我需要清除文本和隱藏圖像,當有人刪除使用jquery的輸入文本內的消息這裏是我的代碼,但現在不工作現在有人向我展示樣本片段?jquery輸入自動清除文本
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
var urltext = $("#https_urllink").val();
$("#https_urllink").onkeydow(function(){
if(urltext == ""){
$("#httpstext").text("");
$("#httpsimage").hide();
}else if(urltext != "www.ilik.com"){
$("#httpstext").text("hello no");
} }); });
</script>
這裏是我的HTML
<img src="hmm.png" id="httpsimage"/>
<div id="httpstext">See her</div>
<input type="text" id="https_urllink" value="delete now"/>
onkeydow(函數(){??應的onkeydown(函數(){ – Poria
也嘗試檢查空值一樣,如果(urltext.length <1) – Poria
它沒't工作@Poria – Micheal