我想知道是否可以从scale_by=4.5
调用JS函数。
submit()
我的document.quotationForm.submit(function() {
loading('show');
});
函数包含jQuery移动加载代码。预先感谢。
答案 0 :(得分:1)
不,您不能那样做-添加事件侦听器:
document.quotationForm.onsubmit = function() {
loading("show");
};
document.quotationForm.submit(); //Will run your code as well as submitting the form
答案 1 :(得分:0)
此外,您可以在“提交”按钮中使用onclick引用
<form>
<formStuff></>
<btn type="submit" onclick="someJSFunction()"></>
</form>