html实现点击按钮,table中 文本框内容锁定,不能修改,再点击另一个按钮,变成可修改,在线

,急用,谢谢... ,急用,谢谢 展开
 我来答
网站建设公司独占网络
2017-07-04 · TA获得超过216个赞
知道小有建树答主
回答量:279
采纳率:84%
帮助的人:199万
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>文本框只读</title>  
<script type="text/javascript" src="http://www.sz886.com/js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">

$(document).ready(function() {
    $("#btn_no").click(function(){
        //通过 readonly 去设置文档框是否为只读的,不可以修改的,这里用设置为只读的(深圳网站建设www.sz886.com)
     $("#content").attr("readonly","true");

});
 $("#btn_yes").click(function(){
        //删除只读的属性,attr加入属性,removeAttr删除属性
     $("#content").removeAttr("readonly");

});
});
</script>
</head>
 
<body> 
      <input type="text"  value="内容" id="content" />
     <br>
     <input type="button" value="不可修改" id="btn_no" /> &nbsp; <input type="button" value="可以修改" id="btn_yes"/>
</body>
</html>
陶矷
2017-07-05 · TA获得超过399个赞
知道小有建树答主
回答量:322
采纳率:57%
帮助的人:187万
展开全部
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
</head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$('#forbid').click(function() {
$('#box').attr('disabled', 'ture');
})
$('#allow').click(function() {
$('#box').removeAttr('disabled');
})
})
</script>
<style type="text/css">
* {
margin: 0;
padding: 0;
</style>

<body>
<div class="demo">
<div class="msg">
<div class="box">
输入文字:<input type="text" name="" id="box" value="" />
<button id="allow">允许输入</button>
<button id="forbid">禁止输入</button>
</div>
</div>
</div>
</body>

</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wyndqqh2
2017-07-04 · 超过40用户采纳过TA的回答
知道小有建树答主
回答量:135
采纳率:0%
帮助的人:71.7万
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.js"></script>
<body>
<table>
<tr>
<td>
<input type="text">
</td>
<td>
<input type="text">
</td>
</tr>
<tr>
<td><input type="button" value="禁止" id="a"></td>
<td><input type="button" value="开启" id="b"></td>
</tr>
</table>
</body>
</html>
<script>
$(function(){
$("#a").click(function(){
$("input[type=text]").attr("disabled","disabled");
});
$("#b").click(function(){
$("input[type=text]").removeAttr("disabled");
});
})
</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yugi111
2015-04-01 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
<!DOCTYPE html>
<html>
  <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
RunJS 演示代码
</title>
<style>

</style>
<script>
var change = function(){
tdt.removeAttribute("readonly");
}
</script>
  </head>
<body>
<button onclick="change()">
add
</button>
<input type="text" id="tdt" readonly="readonly"/>
  </body>
</html>
追问
我还是实现不了啊?我写了一个table,每个table的表格里放的文本框,我是有两个按钮,一个是修改,一个是保存,开始打开文件是只读状态,点击修改按钮变成可读写,点击保存按钮就又回到只读状态,能不能帮我再写的详细一点,有急用,谢谢
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
奥斯蒙德萨德勒
2017-07-05 · 超过21用户采纳过TA的回答
知道答主
回答量:47
采纳率:0%
帮助的人:25.8万
展开全部
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript">
window.onload = function(){
document.getElementById("btn1").onclick = function(){
document.getElementById("input1").setAttribute("readonly","readonly");
}
document.getElementById("btn2").onclick = function(){
document.getElementById("input1").removeAttribute("readonly");
}
}
</script>
</head>

<body >
<button id="btn1" style="width:60px; height:30px; color:#000;">btn1</button>
<button id="btn2" style="width:60px; height:30px; color:#000;">btn2</button>
<table>
<tr>
<td><input type="text" id="input1" style="width:200px; height:30px; border:1px soldi #ccc;"/></td>
</tr>
</table>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式