论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Javascript教程
Tag:验证,特效,入门,实例,验证,表单,特效,正则表达式,跑马灯,document,函数,代码,getElementByID,菜单,图片,视频教程

Javascript教程_JS检测 textarea 的问题教程

文章类别:Javascript | 发表日期:2010-4-26 9:54:02

JS检测 textarea 的问题教程

<form method="get" action="#" >
<div class="iciba_left"><a href="http://iciba.com" target="_blank"><img src="themes/skin/iciba/iciba.gif" /></a></div>
<div class="iciba_top_main">
<textarea name="iciba_doc" id="iciba_doc"></textarea>
</div>
<div class="iciba_right">
<input name="iciba_go" type="submit" value="" />
</div>
</form>

<script>
if(document.getElementById('iciba_doc').value==''){
       document.getElementById('iciba_doc').value=='请输入要查询的英文单词或句子,按CTRL+ENTER';
}
</script>

我这样做的检测 为什么没反应啊
21视频教程网
//输入框的默认值
function def_value(id,msg){
    if(document.getElementById(id).value==""){
        document.getElementById(id).value=msg;
    }
    document.getElementById(id).onclick=function(){
        if(document.getElementById(id).value==msg){
            document.getElementById(this.id).value="";
        }
    }
    document.getElementById(id).onblur=function(){
        if(document.getElementById(id).value==''){
            document.getElementById(this.id).value=msg;
        }
    }
}
调用方法
<script>
window.onload=function(){
def_value('iciba_doc','请输入要查询的英文单词或句子,按CTRL+ENTER');
};
</script>
视频教程列表
文章教程搜索
 
Javascript推荐教程
Javascript热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058