在js中怎样点Button按钮让文本框不可编辑
3个回答
展开全部
<!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>hongrujiajiao</title>
</head>
<body>
<label><input type="text" name="textfield" id="textfield" /></label>
<label><input type="button" name="button" id="button" value="不可编辑" onclick="check()" /></label>
<script type="text/javascript">
function check()
{
document.getElementById("textfield").disabled = true;
}
</script>
</body>
</html>
把以上代码,保存为 index.html 就行了
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>hongrujiajiao</title>
</head>
<body>
<label><input type="text" name="textfield" id="textfield" /></label>
<label><input type="button" name="button" id="button" value="不可编辑" onclick="check()" /></label>
<script type="text/javascript">
function check()
{
document.getElementById("textfield").disabled = true;
}
</script>
</body>
</html>
把以上代码,保存为 index.html 就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
其实我有个想法!你可以把它写成一点它就加一到数据库里!
每次点它都从数据库读出数据!来判断!要是达到一到数的就把BUTTON变成灰色不可点的!有个属性是VIS..你查一下的!
不然真想不到其它的
每次点它都从数据库读出数据!来判断!要是达到一到数的就把BUTTON变成灰色不可点的!有个属性是VIS..你查一下的!
不然真想不到其它的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form id="form1" name="form1" method="post" action="">
<input type="text" name="test" id="test"/>
<input type="button" name="button" id="button" onclick="form1.test.disabled=true;" value="点我" />
</form>
<input type="text" name="test" id="test"/>
<input type="button" name="button" id="button" onclick="form1.test.disabled=true;" value="点我" />
</form>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询