用javascript如何获得文本区域的内容
比如获得文本框的内容是input.value,请问获得文本区域的内容是什么啊?或者给出这样的代码也行:当文本区域获得焦点时,内容为空,当失去焦点时,内容又恢复成原有的。哪...
比如获得文本框的内容是input.value,请问获得文本区域的内容是什么啊?
或者给出这样的代码也行:当文本区域获得焦点时,内容为空,当失去焦点时,内容又恢复成原有的。
哪位高手指点一下,最好说的详细点!非常感谢! 展开
或者给出这样的代码也行:当文本区域获得焦点时,内容为空,当失去焦点时,内容又恢复成原有的。
哪位高手指点一下,最好说的详细点!非常感谢! 展开
1个回答
展开全部
你的设计不大实用,帮你升级了一下;
只有当区域的内容为初始内容时候获取焦点才将其内容置为空,
只有当区域输入空内容时候失去焦点才将内容置为初始内容,否则保留当前内容:
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
window.onload=function(){
var prev=null;
var oInfor=document.getElementById('test').value;
document.getElementById('test').onfocus=function(){
var infor=document.getElementById('test').value;
if(infor==oInfor) document.getElementById('test').value='';
prev=document.getElementById('test').value;;
}
document.getElementById('test').onblur=function(){
var infor=document.getElementById('test').value;
if(infor=='' || infor==null) document.getElementById('test').value=oInfor;
}
}
</script>
</head>
<body>
<textarea id="test" name="test" >original infor</textarea>
</body>
</html>
只有当区域的内容为初始内容时候获取焦点才将其内容置为空,
只有当区域输入空内容时候失去焦点才将内容置为初始内容,否则保留当前内容:
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
window.onload=function(){
var prev=null;
var oInfor=document.getElementById('test').value;
document.getElementById('test').onfocus=function(){
var infor=document.getElementById('test').value;
if(infor==oInfor) document.getElementById('test').value='';
prev=document.getElementById('test').value;;
}
document.getElementById('test').onblur=function(){
var infor=document.getElementById('test').value;
if(infor=='' || infor==null) document.getElementById('test').value=oInfor;
}
}
</script>
</head>
<body>
<textarea id="test" name="test" >original infor</textarea>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询