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

jquery中:input和input的區(qū)別分析

 更新時間:2011年07月13日 23:35:12   作者:  
:input表示選擇表單中的input,select,textarea,button元素,input僅僅選擇input元素。
復(fù)制代碼 代碼如下:

<script type="text/javascript">
$(function(){
$(":input").focus(function(){
$(this).addClass("focus");
}).blur(function(){
$(this).removeClass("focus");
});
})//這個效果第三個textarea也會添加樣式
</script>
<form action="" method="post" id="regForm">
<fieldset>
<legend>個人基本信息</legend>
<div>
<label for="username">名稱:</label>
<input id="username" type="text" />
</div>
<div>
<label for="pass">密碼:</label>
<input id="pass" type="password" />
</div>
<div>
<label for="msg">詳細信息:</label>
<textarea id="msg" rows="2" cols="20"></textarea>
</div>
</fieldset>
</form>

相關(guān)文章

最新評論