欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

表單類各種類型(文本框)失去焦點(diǎn)效果jquery代碼

 更新時間:2013年04月26日 15:25:19   作者:  
基于jquery實(shí)現(xiàn)表單類各種類型(文本框)失去焦點(diǎn)效果,代碼簡單實(shí)用,感興趣的朋友可以參考下,希望對你有所幫助
復(fù)制代碼 代碼如下:

<SPAN style="FONT-SIZE: 18px">表單類失去焦點(diǎn)的效果</SPAN>

復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(function(){
$(":input").focus(function(){ //此處可獲取各種表單如(:text/:button)
$(this).addClass("focusa");
if ($(this).val()==this.defaultValue){
$(this).val("");
}
}).blur(function(){
$(this).removeClass("focusa");
if ($(this).val()==""){
$(this).val(this.defaultValue);
}
});
});
</script>

各種表單的類型:
復(fù)制代碼 代碼如下:

<input type="text" /> 文本框
<input type="password" /> 密碼框
<input type="submit" /> 提交按鈕
<input type="reset" /> 重置按鈕
<input type="radio" /> 單選框
<input type="checkbox" /> 復(fù)選框
<input type="button" /> 普通按鈕
<input type="file" /> 文件選擇控件
<input type="hidden" /> 隱藏框
<input type="image" /> 圖片按鈕

相關(guān)文章

最新評論