在Internet Explorer中,當您開始在文本框中輸入內容時,會顯示一個像X的小按鈕。點擊此圖標時如何檢測事件?是否有事件類型?檢測IE中的texbox清除事件。當IE特定的清除框被點擊時,如何在IE(Internet Explorer)中清除輸入類型=「文本」(文本框)?
<input type="text" value ="" id ="qsearch" name="qsearch"
onBlur="qsearchLookup(this.value);" OnClick="qsearchLookup(this.value);"
onkeyup="qsearchLookup(this.value)" size="26">
function qsearchLookup(searchVal){
document.getElementById("qsearch").value="";
}
我發現這個解決方案真正幫助: http://stackoverflow.com/a/14498921/1895428 – pmrotule 2014-06-06 21:01:15
張貼的答案 – Andrew 2014-07-29 23:36:50