当前位置 : 主页 > 网络编程 > JavaScript >

jquery怎么移除td元素中的指定属性

来源:互联网 收集:自由互联 发布时间:2023-08-02
在jquery中,可以使用removeAttr()方法来移除td元素中的指定属性,该方法的作用就是从所有匹配的元素中移除指定的属性,具体语法为“$(td).removeAttr(需要移除的属性)”。 本教程操作环境

在jquery中,可以使用removeAttr()方法来移除td元素中的指定属性,该方法的作用就是从所有匹配的元素中移除指定的属性,具体语法为“$("td").removeAttr("需要移除的属性")”。

jquery怎么移除td元素中的指定属性

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

在jquery中,可以使用removeAttr()方法来移除td元素中的指定属性。

removeAttr() 方法可以从所有匹配的元素中移除指定的属性。

语法:

$(selector).removeAttr(attribute)
  • attribute :规定从指定元素中移除的属性,不可省略。

示例:移除td元素中的id属性

<!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>

1.gif

相关教程推荐:jQuery视频教程

【本文转自:香港大带宽服务器 http://www.558idc.com/st.html 欢迎留下您的宝贵建议】

上一篇:一文带你深入了解React Hooks!
下一篇:没有了
网友评论