當我點擊我的按鈕時,文本框不會隱藏。我的代碼有問題嗎?JQuery隱藏文本框?
$("#butDisplayResults").on("click", function() {
console.log("butDisplayResults click event
handler function called!");
$("#txtInventory").hide();
});
$("#txtInventory").hide();
當我點擊我的按鈕時,文本框不會隱藏。我的代碼有問題嗎?JQuery隱藏文本框?
$("#butDisplayResults").on("click", function() {
console.log("butDisplayResults click event
handler function called!");
$("#txtInventory").hide();
});
$("#txtInventory").hide();
請遵循此示例代碼:
$(document).ready(function(){
$("input#btn").click(function(){
$("input#txt").hide();
});
});
非常感謝你:) – user3479736
你現在的問題得到解決嗎? –
在「輸入#btn」或「輸入#txt」上,我可以輸入「txtInventory」還是保持這種狀態? – user3479736
代碼似乎是正確的。 如果消息正在記錄,則檢查寫入的ID是否正確。 請檢查jQuery是否已正確添加到您的html頁面中。除非你用反斜槓轉義 並把這個代碼放到..
$(document).ready(function(){
/* you code */
});
謝謝你,在我的代碼中,我有$(docoment).ready(function(){});除了它仍然不會隱藏文本框,當我從Visual Studio在瀏覽器上運行它:( – user3479736
是否得到記錄的消息 –
換行符沒有在Javascript中的字符串是不允許。 – Barmar
你能告訴我們你的html代碼嗎? – ds345