我正在使用 grails 提交远程表单。我想使用 onLoading 事件,但它什么也没做。可能是什么问题呢?代码与文档中的相同...
<g:formRemote dojoType="dijit.form.Form" method="post" onLoading="myFunction()" id="submitForm" update="resultset" name="formRemote" url="[ controller: 'controller', action:'index' ]">
myFunction = function() {
alert("test 123 test");
}