srch.png没有在Firefox中显示但在Chrome中显示

时间:2013-02-03 13:43:06

标签: php

<form id="searchForm" onsubmit="return validsearch()" action="search.php" method="post" name="searchForm">
  <input class="nnew_ttxtbx" type="text" name="searchf">
  <input width="55" type="image" height="21" border="0" align="right" src="images/srch.png">
</form>

这是我的代码。 Firefox会显示png img的提交查询,但Chrome会正确显示。可能有什么不对?

1 个答案:

答案 0 :(得分:1)

为什么不使用常规<button>代码?

<form id="searchForm" onsubmit="return validsearch()" action="search.php" method="post" name="searchForm">
  <input class="nnew_ttxtbx" type="text" name="searchf">
  <button type="submit" style="width: 55px; height: 21px; border: none;">
    <img src="images/srch.png" />
  </button>
</form>