IQuery判空
阿新 • • 發佈:2020-12-27
技術標籤:Jquery
程式碼塊
<body>
<input type="text" id="address" value="請輸入賬號"/>
<input type="text" id="password" value="請輸入密碼" />
<input id="btn" type="button" value="登入" />
</body>
Jquery 方法
<script type="text/javascript">
$(function(){
$("#address").focus(function(){
var te=$(this).val();
if(te=="請輸入賬號"){
$(this).val("");
}
})
//點選文字框時,文字消失;離開文字框時輸入資訊改回請輸入郵箱地址
$("#address").blur(function () {
var str = $(this).val();
if (str == "") {
$(this).val("請輸入賬號");
}
})
})
</script>
執行效果