作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我在 RiotJS 中有一个简单的表单
<tag-form>
<form onsubmit={handleSubmit} id='someForm'>
<input name='param1' />
<button type="submit">Submit</button>
</form">
<script>
this.handleSubmit=function(e) { console.log(e); }
</script>
</tag-form>
当我通过按钮提交时效果很好。但是当我使用外部按钮触发表单的提交
document.getElementById('someForm').submit();
它不起作用,因为它以某种方式不运行 riotjs onsubmit
函数,而是运行 native submit
函数,这不是我想要的......
如何解决这个问题?
最佳答案
经过一番摆弄后,我像这样修复了它:
<tag-form>
<form onsubmit={handleSubmit} id='someForm'>
<input name='param1' />
<button type="submit" id="someButton">Submit</button>
</form">
<script>
this.handleSubmit=function(e) { console.log(e); }
</script>
</tag-form>
然后在按钮上调用 .click()
,而不是在表单上调用 .submit()
。
document.getElementById('someButton').click();
这似乎工作正常!
关于javascript - riotjs触发表单onsubmit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32895565/
我是一名优秀的程序员,十分优秀!