如何使用jQuery添加和删除HTML属性?

要使用jQuery添加和删除HTML属性,请使用addClass()andremoveClass()方法。

您可以尝试运行以下代码以使用jQuery添加和删除HTML属性-

示例

<html>

   <head>

      <title>jQuery Example</title>

      <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

      <script type = "text/javascript">

         $(document).ready(function(){

         

           $( '#add' ).click( function () {

               $('#page_navigation1').addClass( 'blue-class' );        

           });

         

           $( '#remove' ).click( function () {        

               $('#page_navigation1').removeClass( 'blue-class' );        

           });    

         });  

         

      </script>

      <style>

         .blue-class {

           background-color: blue;

           font-size: 30px;

         }

      </style>

   </head>

   <div id="page_navigation1">Demo</div>

   <button id="add">Add</button>

   <button id="remove">Remove</button>

</html>

以上是 如何使用jQuery添加和删除HTML属性? 的全部内容, 来源链接: utcz.com/z/321720.html

回到顶部