0

我的联系我们页面中有这段代码:

     <button name="Submit" id="Submit" type="submit" style=" border-style: none; border-width: 0; background-color:transparent" >
<object data="swf/sending.swf" type="application/x-shockwave-flash" width="190" height="46" form="msg">
<param name="movie" value ="swf/sending.swf" />
<param name="quality" value="High">
<param name="wmode" value="transparent">
<embed src="swf/sending.swf" width="190" height="46" quality="High" 
wmode="transparent">
</object>           
</button>

当我转到页面地址并尝试通过单击按钮发送消息时,如果我使用 IE 或 Firefox,它运行良好并将消息发送到我的电子邮件地址,但在 Google Chrome 中我没有收到任何消息。我不知道问题是什么。如果有人帮助<我将非常感激。这是此页面中的表单代码:

<form method="post" action="email.php">

太感谢了!

4

1 回答 1

0
<button name="Submit" id="Submit" type="submit" style=" border-style: none; border-width: 0; background-color:transparent" >

不同于

<input name="Submit" id="Submit" type="submit" style=" border-style: none; border-width: 0; background-color:transparent" />

顺便说一句,您应该关闭button标签:

<button name="Submit" id="Submit" type="submit" style=" border-style: none; border-width: 0; background-color:transparent" >Something</button>

或者

 <button name="Submit" id="Submit" type="submit" style=" border-style: none; border-width: 0; background-color:transparent" >&nbsp;</button>
于 2013-06-25T13:36:07.533 回答