news.js 407 B

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