1234567891011121314 |
- function myyingsinit(){
- var s = '<select id="type_id" style="width:100px;border:none;background:white;font-size:14px"><option value="">所有分类</option></select>';
- $('#searsearch_bar').prepend(s);
- $('#type_id').change(function(){
- yy.search({'type_id':this.value});
- });
- }
- // 生成下拉选项
- yy.onshowdata=function(da){
- if(da.typearr){
- js.setselectdata(get('type_id'), da.typearr, 'id');
- }
- }
- myyingsinit();
|