2013-02-03 161 views
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位置的提交查詢,但Chrome顯示正確。什麼可能是錯的?srch.png不在Firefox中顯示,但在Chrome中顯示

+0

請問您能提供更多的上下文嗎?你指的是你的代碼示例中不存在的png img。請包括JS功能和PNG,但你指的是。 – mvbrakel

+0

Tnx更新 – mvbrakel

+0

上面的例子在我的FF中有效。注意它是正確的。驗證注意事項是在它上面呈現的 – mvbrakel

回答

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> 
+0

custmour想要這個 – user1898114

+0

Bod將我們從對微觀管理標記進行微觀管理的客戶中拯救出來。 – Quentin

+0

@Quentin _'Bod'_從錯誤的類型中拯救我們... – ShuklaSannidhya

相關問題