欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery中removeProp()方法用法实例教程

程序员文章站 2023-11-08 10:23:10
本文实例讲述了jquery中removeprop()方法用法。分享给大家供大家参考。具体分析如下: 此方法可以删除由prop()方法设置的属性。 语法: 代码如下: $(...

本文实例讲述了jquery中removeprop()方法用法。分享给大家供大家参考。具体分析如下:

此方法可以删除由prop()方法设置的属性。

语法:

代码如下:

$("selector").removeprop(name)

参数列表:

参数 描述
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()方法设置的属性。