0
我有這個代碼http://pastie.org/1431114它有什麼問題嗎?當我單擊國家選擇第二次時,我只能得到區域選擇列表。jquery selectmenu code issue
我有這個代碼http://pastie.org/1431114它有什麼問題嗎?當我單擊國家選擇第二次時,我只能得到區域選擇列表。jquery selectmenu code issue
我不明白,爲什麼你正在使用
$('select#country').selectmenu({
select: function(event, options) {
和
<select id="country" name="country"
onchange="javascript: get_regions(this.value)">
也許這會容易得多,如果你會使用這樣的代碼
$('select#country').change(function(){
var value = $(this).val();
//ajax call
})