开发者

why Html form mail gives the coordinates of the image button in firefox

开发者 https://www.devze.com 2022-12-12 21:40 出处:网络
I have a html mail form and I was just wondering why I get the coordinates of the submit image button in the body of the message in firefox, is there a way to delete that.

I have a html mail form and I was just wondering why I get the coordinates of the submit image button in the body of the message in firefox, is there a way to delete that.

thanks

 <form me开发者_高级运维thod="post" action="mailto:miles@faithinstyle.co.uk?subject=Password Request enctype="text/plain">
            <input type="image" id="email_button" src="images/buttons/here.png">
</form>


You can do something like this:

<a href="mailto:miles@faithinstyle.co.uk?subject=Password Request">
    <img id="email_button" src="images/buttons/here.png" />
</a>


either don't use input type=image or just ignore the data. what problem are you trying to solve?

0

精彩评论

暂无评论...
验证码 换一张
取 消