0
我使用jquery.ui.selectmenu.js
插件在我的網站上進行自定義選擇。
我的選擇已綁定onchenge事件,這確實$(this).closest('form').submit();
的問題是,在歌劇不提交表單 - 它重定向到索引頁,並增加了對#nogo
URL。
我在插件中找到原因。
有代碼有這樣的片段:jquery.ui.selectmenu重定向到索引頁而不是提交表單
this.newelement = $('<a />', {
'class': this.widgetBaseClass + ' ui-widget ui-state-default ui-corner-all',
'id' : this.ids[ 1 ],
'role': 'button',
'href': '#nogo',
'tabindex': this.element.attr('disabled') ? 1 : 0,
'aria-haspopup': true,
'aria-owns': this.ids[ 2 ]
});
的問題是 - 我應該取代#nogo
與解決?
謝謝。