DDR爱好者之家 Design By 杰米
效果图:
具体实现:
1、textarea标签内容
复制代码 代码如下:
<span style="font-size:14px;"><tr>
<td align="right" valign="top">备注:</td>
<td><textarea name="" id="remark" cols="" rows="" class="textarea220" onfocus="this.className='textarea220L';this.onmouseout='';getAddFocus('remark');" onblur="this.className='textarea220';this.onmouseout=function(){this.className='textarea220'};lostAddFocus('remark');" onmousemove="this.className='textarea220Lg'" onmouseout="this.className='textarea220'"></textarea></td>
</tr></span>
2、初始化使点击添加按钮时,内容显示最多能输入50个字
复制代码 代码如下:
<span style="font-size:14px;">$("#introduction").val("最多能输入50个字");
document.getElementById("introduction").style.color="gray";</span>
3、js脚本
复制代码 代码如下:
<span style="font-size:14px;">function getAddFocus(id){//针对添加操作中的简介和备注,textarea获得焦点清空输入框
var textarea=document.getElementById(id);
textarea.value="";
textarea.style.color="black";
}
function lostAddFocus(id){//针对添加操作中的简介和备注,textarea失去焦点且内容为空时,显示提示信息
var textarea=document.getElementById(id);
var textarea_value=textarea.value;
if(textarea_value==""){
textarea.value="最多能输入50个字";
textarea.style.color="gray";
}
}</span>
csdn小伙伴写的textarea焦点的用法参考:
复制代码 代码如下:
<span style="font-size:14px;"> 1.文本框显示默认文字:
<textarea>白鸽男孩</textarea>
<textarea>白鸽男孩</textarea>
2.鼠标点击文本框,默认文字消失:
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
3.鼠标移至文本框,默认文字消失:
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
4.鼠标点击文本框,默认文字消失,点击文本框外任意区域,默认文字又重现:
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}” onblur=”if(value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}” onblur=”if(value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
5.鼠标移至文本框,默认文字消失,鼠标移出文本框,默认文字又重现:
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}” onmouseout=”blur()” onblur=”if (value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}” onmouseout=”blur()” onblur=”if (value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
6.鼠标单击文本框,文本框内任何文字消失(包括默认文字及后来输入的文字):
<textarea onclick=”value=' ‘”>白鸽男孩</textarea>
<textarea onclick=”value=' ‘”>白鸽男孩</textarea>
7.鼠标移至文本框,文本框内任何文字消失(包括默认文字及后来输入的文字):
<textarea onmouseover=”value=' ‘”>白鸽男孩</textarea>
<textarea onmouseover=”value=' ‘”>白鸽男孩</textarea>
8.单击文本框后全选文本框内的文字:
<textarea onfocus=”select()”>白鸽男孩</textarea>
<textarea onfocus=”select()”>白鸽男孩</textarea>
9.鼠标移至文本框全选文本框内的文字:
<textarea onmouseover=”focus()” onfocus=”select()”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”select()”>白鸽男孩</textarea>
10.回车后焦点从当前文本框转移到下一个文本框:
<textarea onkeydown=”if(event.keyCode==13)event.keyCode=9″>白鸽男孩</textarea>
<textarea onkeydown=”if(event.keyCode==13)event.keyCode=9″>白鸽男孩</textarea>
11.回车后焦点从当前文本框转移到指定位置:
<textarea onkeypress=”return focusNext(this,'指定位置的id名称',event)”>白鸽男孩</textarea> </span>
具体实现:
1、textarea标签内容
复制代码 代码如下:
<span style="font-size:14px;"><tr>
<td align="right" valign="top">备注:</td>
<td><textarea name="" id="remark" cols="" rows="" class="textarea220" onfocus="this.className='textarea220L';this.onmouseout='';getAddFocus('remark');" onblur="this.className='textarea220';this.onmouseout=function(){this.className='textarea220'};lostAddFocus('remark');" onmousemove="this.className='textarea220Lg'" onmouseout="this.className='textarea220'"></textarea></td>
</tr></span>
2、初始化使点击添加按钮时,内容显示最多能输入50个字
复制代码 代码如下:
<span style="font-size:14px;">$("#introduction").val("最多能输入50个字");
document.getElementById("introduction").style.color="gray";</span>
3、js脚本
复制代码 代码如下:
<span style="font-size:14px;">function getAddFocus(id){//针对添加操作中的简介和备注,textarea获得焦点清空输入框
var textarea=document.getElementById(id);
textarea.value="";
textarea.style.color="black";
}
function lostAddFocus(id){//针对添加操作中的简介和备注,textarea失去焦点且内容为空时,显示提示信息
var textarea=document.getElementById(id);
var textarea_value=textarea.value;
if(textarea_value==""){
textarea.value="最多能输入50个字";
textarea.style.color="gray";
}
}</span>
csdn小伙伴写的textarea焦点的用法参考:
复制代码 代码如下:
<span style="font-size:14px;"> 1.文本框显示默认文字:
<textarea>白鸽男孩</textarea>
<textarea>白鸽男孩</textarea>
2.鼠标点击文本框,默认文字消失:
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
3.鼠标移至文本框,默认文字消失:
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}”>白鸽男孩</textarea>
4.鼠标点击文本框,默认文字消失,点击文本框外任意区域,默认文字又重现:
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}” onblur=”if(value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
<textarea onfocus=”if(value=='白鸽男孩') {value=' ‘}” onblur=”if(value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
5.鼠标移至文本框,默认文字消失,鼠标移出文本框,默认文字又重现:
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}” onmouseout=”blur()” onblur=”if (value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”if(value=='白鸽男孩') {value=' ‘}” onmouseout=”blur()” onblur=”if (value==' ‘) {value='白鸽男孩'}”>白鸽男孩</textarea>
6.鼠标单击文本框,文本框内任何文字消失(包括默认文字及后来输入的文字):
<textarea onclick=”value=' ‘”>白鸽男孩</textarea>
<textarea onclick=”value=' ‘”>白鸽男孩</textarea>
7.鼠标移至文本框,文本框内任何文字消失(包括默认文字及后来输入的文字):
<textarea onmouseover=”value=' ‘”>白鸽男孩</textarea>
<textarea onmouseover=”value=' ‘”>白鸽男孩</textarea>
8.单击文本框后全选文本框内的文字:
<textarea onfocus=”select()”>白鸽男孩</textarea>
<textarea onfocus=”select()”>白鸽男孩</textarea>
9.鼠标移至文本框全选文本框内的文字:
<textarea onmouseover=”focus()” onfocus=”select()”>白鸽男孩</textarea>
<textarea onmouseover=”focus()” onfocus=”select()”>白鸽男孩</textarea>
10.回车后焦点从当前文本框转移到下一个文本框:
<textarea onkeydown=”if(event.keyCode==13)event.keyCode=9″>白鸽男孩</textarea>
<textarea onkeydown=”if(event.keyCode==13)event.keyCode=9″>白鸽男孩</textarea>
11.回车后焦点从当前文本框转移到指定位置:
<textarea onkeypress=”return focusNext(this,'指定位置的id名称',event)”>白鸽男孩</textarea> </span>
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
更新日志
2025年01月20日
2025年01月20日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]