jquery如何实现进入页面只展示对应的字段数据 用户点击编辑之后所有的input select才可以编辑,求个思路
2 回答
慕容森
TA贡献1853条经验 获得超18个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
</style>
</head>
<body>
<input type="text">
<input type="text">
<input type="text">
<button class="btn1">增加</button>
<button class="btn2">移除</button>
<script src="js/jquery.min.js"></script>
<script>
$(".btn1").click(function(){
$(":input").attr("readonly","readonly");
})
$(".btn2").click(function(){
$(":input").removeAttr("readonly");
})
</script>
</body>
</html>
添加回答
举报
0/150
提交
取消