我的 jQuery 脚本出现错误:
$("input.buttonConfirmOrder").click(function (e) {
e.preventDefault();
//do some stuff with the order
return false;
});
错误在警报框中弹出:
TypeError:无法在未定义上调用方法“toString”
我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();