我无法绑定事件" onchange" http://georgepaterson.github.com/jquery-ui/selectgroup/
此插件隐藏选择器
<select class="select-list">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
$(document).ready(function(){
$('.select-list').selectgroup({
style: 'popup'
});
});
答案 0 :(得分:0)
$是jQuery关键字的快捷方式,请尝试这样:
jQuery(document).ready(function(){
jQuery('.select-list').selectgroup({
style: 'popup'
});
});
答案 1 :(得分:0)
这个插件将选择框的html结构更改为ul,所以你需要为这样的li点击编写一个函数
jQuery(document).ready(function(){
jQuery('.ui-selectgroup-list li a').click({
alert(jQuery(this).html());
});
});