點晴ERP-銷售訂單查詢調(diào)用動態(tài)JS實現(xiàn)enter鍵查詢
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
:點晴ERP-銷售訂單查詢調(diào)用動態(tài)JS實現(xiàn)enter鍵查詢 點擊進(jìn)入 如下圖: 將以下代碼復(fù)制在第一個輸入框里 如下圖: document.onkeyup = function(e) { var event = e || window.event; var key = event.which || event.keyCode || event.charCode; if (key == 13) { document.getElementById("loading_pic").style.left = ((document.body.clientWidth/2)-135) + "px"; document.getElementById("loading_pic").style.top = ((document.body.clientHeight/2)-63) + "px"; document.getElementById('loading_pic').style.display=''; document.getElementById("word").value='no' document.form1.action = 'order_product_list_check.asp'; document.form1.target = ''; document.form1.submit(); } }; 最后保存,然后關(guān)閉這個頁面 然后在查詢界面就可以使用enter鍵觸發(fā)查詢功能。 該文章在 2023/10/23 16:32:18 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |