如何在 asp.net mvc 2 上模拟 asp:imagebuttom
我正在 asp.net mvc 2 上创建一个表单,我需要提交我的表单数据。有没有一种简单的方法可以使用 input[type="image"] (如 asp:imagebuttom)提交表单,但不使用 javascript 调用表单提交事件?
预先感谢您的帮助!
i'm creating a form on asp.net mvc 2 and i need to submit my form data. Is there a simple way to submit a form with a input[type="image"] (like asp:imagebuttom) but without use javascript to call the form submit event?
thanks in advance for some help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MVC 中的提交按钮没有什么特别的魔力。只需在表单内创建一个标准图像输入即可。
图像输入是 HTML 中的提交按钮,因此您不需要添加任何 javascript。
There's no particular magic for submit buttons in MVC. Just create a standard image input inside the form.
Image inputs are submit buttons in HTML, so you don't need to add any javascript.
就我个人而言,我会设计一个 input[type=submit] 按钮,使其看起来像图像。
Personally, I would style an input[type=submit] button, to look like an image.