0
<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 place 的提交查询,但是,Chrome 正确显示它。有什么问题?

4

1 回答 1

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>
于 2013-02-03T13:48:03.967 回答