我可以从document.formID.submit();调用JS函数吗?

时间:2019-03-04 08:28:41

标签: javascript jquery html string function

我想知道是否可以从scale_by=4.5调用JS函数。

submit()

我的document.quotationForm.submit(function() { loading('show'); }); 函数包含jQuery移动加载代码。预先感谢。

2 个答案:

答案 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>