鼠标点击文字消失:<inputname="textfield"style="color:#CCC;"type="text"value="点击文字消失"size="12"οnclick="value='';focus()"οnblur="if(value=='')value='点击文字消失;"/>
<br/><br/>
鼠标点击文字选中:<inputname="textfield"type="text"value="点击文字选中"size="12"οnclick="focus();select()"/>
<br/><br/>
<inputname="key"type="text"id="key"value="关键词"size="30"οnmοuseοver=this.focus();this.select();οnclick="if(value==defaultValue){value='';this.style.color='#000'}"onBlur="if(!value){value=defaultValue;this.style.color='#999'}"style="color:#999"/>
textarea文本框,没有value值,所以得另写:
<textareaid="comment_message"class="frame_db"οnkeydοwn="ctrlEnter(event,'commentsubmit_btn');"name="message"rows="5"cols="60"style="width:380px;">快写几句您的看法吧,她需要您的鼓励,还会给您加分哟~</textarea>
<scripttype="text/javascript">
jQuery(function(){
varareatext="快写几句您的看法吧,她需要您的鼓励,还会给您加分哟~";
jQuery(".frame_db").click(function(){
if(jQuery(this).text()==areatext){
jQuery("#comment_message").text("").css("color","#666");
}
})
})
</script>
转载于:https://blog.51cto.com/excelsior/1302329