有没有办法在提交时触发 javascript 函数而无需 onsubmit()
我希望编写一个 javascript 函数,该函数将在用户提交表单时触发,但是我没有对提交按钮的编辑权限,因此我可以添加 onsubmit 函数。 我可以添加 标记,因此如果我可以检测到提交,那么我就可以执行我的代码。 有人知道怎么做吗?
I am looking to write a javascript function that will fire when a user submits a form, however I do not have edit access to the submit button so that I can add the onsubmit function. I am able to add a <script>
tag, so if I can detect the submit, then I can execute my code. Anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过 DOM 找到提交按钮(例如
getElementByID()
或document.formname
),然后设置提交按钮的onsubmit
值到您选择的功能。You can locate the submit button through the DOM (
getElementByID()
ordocument.formname
come to mind) and then set the submit button'sonsubmit
value to a function of your choice.怎么可能呢? 如果您在页面上执行 JavaScript,则可以访问整个 DOM。
How is that possible? If you're executing JavaScript on page, you have access to the entire DOM.
您可以使用 AttachEvent 或 addEventListener 为 DOM 对象附加事件。
例如
element = document.getElementById('submitButtonId');
element.addEventListener('点击',doSomething,false);
而“doSomething”是函数名称。
You can use the attachEvent or addEventListener to attach an event for an DOM Object.
e.g.
element = document.getElementById('submitButtonId');
element.addEventListener('click',doSomething,false);
while "doSomething" is the function name.