本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。
在jquery中,可以使用removeAttr()方法来移除td元素中的指定属性。
removeAttr() 方法可以从所有匹配的元素中移除指定的属性。
语法:
复制代码1
$(selector).removeAttr(attribute)
登录后复制
attribute :规定从指定元素中移除的属性,不可省略。
示例:移除td元素中的id属性
复制代码1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("button").click(function() {
$("td").removeAttr("id")
});
});
</script>
<style>
#Peter{
background-color: #FFC0CB;
}
</style>
</head>
<body>
<table border="1">
<caption>人物信息</caption>
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
<tr>
<td id="Peter">Peter</td>
<td>20</td>
</tr>
<tr>
<td>Lois</td>
<td>20</td>
</tr>
</table><br />
<button>移除td中的id属性</button>
</body>
</html>
登录后复制
相关教程推荐:jQuery视频教程
以上就是jquery怎么移除td元素中的指定属性的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是多情乐曲最近收集整理的关于jquery怎么移除td元素中的指定属性的全部内容,更多相关jquery怎么移除td元素中内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复