JavaScript我这个为什么不能让文本框变成红色的呢??
怎么让它被选中的时候就不是蓝色而是变成红色的?<html><head><styletype="text/css">textarea{resize:none;border:...
怎么让它被选中的时候就不是蓝色 而是变成红色的?
<html>
<head>
<style type="text/css">
textarea{resize:none;border:1px solid blue;}
</style>
<script>
window.onload=function(){
var oTxt=document.getElementById("txt1")
if(oTxt.oninput==true)
{
oTxt.style.border=1px solid red;
};
};
</script>
</head>
<body>
<textarea id="txt1" cols="30" rows="10"></textarea>
</body>
</html> 展开
<html>
<head>
<style type="text/css">
textarea{resize:none;border:1px solid blue;}
</style>
<script>
window.onload=function(){
var oTxt=document.getElementById("txt1")
if(oTxt.oninput==true)
{
oTxt.style.border=1px solid red;
};
};
</script>
</head>
<body>
<textarea id="txt1" cols="30" rows="10"></textarea>
</body>
</html> 展开
1个回答
展开全部
<html>
<head>
<style type="text/css">
textarea{resize:none;border:1px solid blue;}
</style>
<script>
window.onload=function(){
var oTxt=document.getElementById("txt1")
oTxt.onfocus=function()
{
oTxt.style.border="1px solid red";
};
oTxt.onblur=function()
{
oTxt.style.border="1px solid blue";
};
};
</script>
</head>
<body>
<textarea id="txt1" cols="30" rows="10"></textarea>
</body>
</html>
<head>
<style type="text/css">
textarea{resize:none;border:1px solid blue;}
</style>
<script>
window.onload=function(){
var oTxt=document.getElementById("txt1")
oTxt.onfocus=function()
{
oTxt.style.border="1px solid red";
};
oTxt.onblur=function()
{
oTxt.style.border="1px solid blue";
};
};
</script>
</head>
<body>
<textarea id="txt1" cols="30" rows="10"></textarea>
</body>
</html>
追问
谢谢
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询