調用方法‘的toString’我對我的jQuery腳本得到一個錯誤:jQuery的單擊事件錯誤:「類型錯誤:無法在不確定的
:TypeError: cannot call method 'toString' on undefined
$("input.buttonConfirmOrder").click(function (e) {
e.preventDefault();
//do some stuff with the order
return false;
});
誤差在alertbox彈出
我不會在任何時候使用toString
,錯誤,當我點擊鏈接彈出,那就是打功能的第一行之前:
e.preventDefault();
按鈕調用事件看起來是這樣的:
<input type="submit" name="ctl00$mainContent$ButtonConfirmOrder" value="Pay" id="ctl00_mainContent_ButtonConfirmOrder" class="buttonConfirmOrder confirmButton">
我已經嘗試了所有的以下內容:
$("input.buttonConfirmOrder").on("click", function(e) { /...
$ = jQuery;
jQuery.noConflict();
看起來像它的工作http://jsfiddle.net/T2d24/ – 2619
爲什麼你有一個'提交'不應該提交?爲什麼不是'button'呢? – st3inn