jQuery中removeProp()方法用法实例教程
本文实例讲述了jquery中removeprop()方法用法。分享给大家供大家参考。具体分析如下:
此方法可以删除由prop()方法设置的属性。
语法:
代码如下:
$("selector").removeprop(name)
参数列表:
实例:
实例一:
代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="https://www.cnblogs.com/" />
<head>
<title>博客园</title>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("td").prop({width:"200",height:"300"});
$("button").click(function(){
$("td").removeprop("width");
})
})
</script>
</head>
<body>
<table border="1">
<tr>
<td>欢迎来到博客园</td>
</tr>
</table>
<button>删除属性</button>
</body>
</html>
以上代码可以删除td的width属性。
实例二:
代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="https://www.cnblogs.com/" />
<head>
<title>博客园</title>
<style type="text/css">
td
{
width:200px;
}
</style>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("td").prop({height:"300"});
$("button").click(function(){
$("td").removeprop("width");
})
})
</script>
</head>
<body>
<table border="1">
<tr>
<td>欢迎来到博客园</td>
</tr>
</table>
<button>删除属性</button>
</body>
</html>
以上代码并没有删除td的width属性,这是因为removeprop()只能删除由prop()方法设置的属性。
上一篇: 鸿蒙系统上线?华为内部人员:山寨网站