repair_fault.js 451 B

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