我需要在 jQuery 中创建一个简单的函数,它将在其他几个函数中调用
$(document).ready(function() {
function reload_cart() {
alert('reload cart called');
}
});
$(document).ready(function() {
reload_cart(); //i need to call from here.
});
$(document).ready(function() {
$('a.add_to_cart').live('click', function (e) {
reload_cart(); //i need to call from here.
});
});
我在萤火虫中遇到的错误:reload_cart() is not defined
。