当我点击提交时,我正试图在jQuery函数中调用一个函数。
显然,当提交按钮没有包装在jQuery代码中时,它可以访问对象方法,但是当它出现时,它无法访问它。
html是:
<input type="submit" onclick="calculator.submit();">
jQuery是:
jQuery(function($){
var calculator = {
submit: function(){
...do stuff
},
});