通过单击下面的字符串
通过邮件发送数据的一种方法<form action="the page I want to send to.php" method="post">
<input type="hidden" name="data" value="the data I want to send">
<input type="submit" value="the string I want to show">
</form>
但是,它看起来像一个按钮。 我不想要那个。我希望字符串看起来像普通字符串,但它可以通过点击字符串发送数据。
你知道怎么做吗?
答案 0 :(得分:1)
也许删除提交按钮的所有样式:
input[type=submit] {
background: none;
border: none;
pointer: default;
display: inline;
margin: 0;
padding: 0;
}
<form action="the page I want to send to.php" method="post">
<input type="hidden" name="data" value="the data I want to send">
In this text is <input type="submit" value="the string I want to show">
</form>
这使您的提交按钮看起来像普通文本。