概述
本教程操作环境:windows10系统、jquery3.2.1版本、Dell G3电脑。
jquery中tr怎么删除id属性
removeAttr() 方法从被选元素中移除属性。
语法
$(selector).removeAttr(attribute)
登录后复制
attribute 必需。规定从指定元素中移除的属性。
示例如下:
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<style>
#city{
background-color:pink;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("tr").removeAttr("id");
});
});
</script>
</head>
<body>
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr id="city">
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<button>删除所有tr元素的id属性</button>
</body>
</html>
登录后复制
输出结果:
相关视频教程推荐:jQuery视频教程
以上就是jquery中tr怎么删除id属性的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是动听长颈鹿为你收集整理的jquery中tr怎么删除id属性的全部内容,希望文章能够帮你解决jquery中tr怎么删除id属性所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复