本文實例講述了jQuery中removeProp()方法用法。分享給大家供大家參考。具體分析如下:
此方法可以刪除由prop()方法設置的屬性。
語法:
代碼如下:$("selector").removeProp(name)
參數列表:
參數
描述
name
定義要要刪除的屬性名稱。
實例:
實例一:
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://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" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://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()方法設置的屬性。
希望本文所述對大家的jQuery程序設計有所幫助。