[Attribute] selector usage instance in jQuery, jqueryattribute
This document describes the usage of the [attribute] selector in jQuery. Share it with you for your reference. The specific analysis is as follows:
This selector can match elements with given attributes.
Syntax structure:
Copy codeThe Code is as follows: $ ("[attribute]")
Parameter List:
Parameters |
Description |
Attribute |
Name of the property to be searched. |
Instance code:
Copy codeThe Code is as follows:
<! DOCTYPE html>
<Html>
<Head>
<Meta charset = "UTF-8">
<Meta name = "author" content = "http://www.bkjia.com/"/>
<Title> helping customers </title>
<Script type = "text/javascript" src = "mytest/jQuery/jquery-1.8.3.js"> </script>
<Script type = "text/javascript">
$ (Document). ready (function (){
$ ("Button"). click (function (){
$ ("[Title]" ).css ("color", "blue ");
});
});
</Script>
</Head>
<Body>
<Ul>
<Li id = "first"> html area </li>
<Li id = "second" title = "jquery"> Jquery area </li>
</Ul>
<Ul>
<Li id = "third"> welcome to the customer's house </li>
<Li> welcome to the customer's home </li>
</Ul>
<Button> click to view results </button>
</Body>
</Html>
The above Code sets the text color in the li element with the title attribute to blue.
I hope this article will help you with jQuery programming.