FireFox 和 FireFox 中的图像按钮形成 mailto 问题Chrome 附加 x= y=
当我在 FireFox 或 Chrome 中使用带有表单图像按钮的 mailto 时,我在正文文本末尾添加了“x=101 y=15”类型文本。 x & y 值每次都不同。
常规的提交按钮工作正常。 IE(这一次)做对了。
我的代码有问题吗?
下面的示例有一个普通的提交按钮和一个图像按钮。
<form action="mailto:[email protected]?subject=my subject line&body=my body text" method="post" enctype="text/plain">
<input type="submit" value="Thank you.">
<input type="image" src="image1.png" onmouseover="this.src='image2.png';" onmouseout="this.src='image1.png';" alt="Submit">
</form>
When I use mailto with a form image button in FireFox or Chrome I get "x=101 y=15" type text added to the end of the body text. The x & y values vary each time.
A regular submit button works fine. IE (for once) gets it right.
Is something wrong with my code?
The example below has a normal submit button and an image button.
<form action="mailto:[email protected]?subject=my subject line&body=my body text" method="post" enctype="text/plain">
<input type="submit" value="Thank you.">
<input type="image" src="image1.png" onmouseover="this.src='image2.png';" onmouseout="this.src='image1.png';" alt="Submit">
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此行为是设计使然。
当用户单击图像按钮时,浏览器会将他单击的坐标发送到服务器。
This behavior is by design.
When the user clicks an image button, the browser sends the coordinates that he clicked on to the server.
谢谢你们。我使用 BUTTON 标签解决方案来避免 x= y= 问题 - 但必须使用 CSS 来隐藏默认按钮:
Thanks guys. I went with a BUTTON tag solution to avoid the x= y= issue - but had to use CSS to hide the default button:
来自 w3 规范:
也许在你的情况下在 IE 中工作正常,但不符合预期。
From w3 specs:
Perhaps working fine in IE in your case, but not as intended.