我有一段我正在使用的代码,并且有一个插件用于设置选择框的样式,所以它是地狱或已经。
我正在销毁这个元素,所以当我从#searchbrand中选择一些东西时,它会筛选掉它是什么#searchmodel。但是当我触发时,我无法像以前的样式那样重建元素。
$("#searchbrand").change(function() {
var _class = $('option:selected', this).attr('class');
$('#searchmodel option').hide().filter(function() {return $(this).attr('class') == _class;}).show();
$('#searchmodel').selectBox('destroy');
});