我在NodeJs / Express应用程序的表单上有一个图像。我希望它充当提交类型按钮。
<form id="form_nav1" action="/about" method="post">
<div>
<img src="/images/aboutus.png" type="submit" style="cursor:pointer;" name="about_us">
</div>
</form>
我期望对index.js进行POST调用,但没有任何反应。
谢谢您的指导。
type
属性放在任意元素上。