Home > Web Front-end > JS Tutorial > body text

How to select elements and modify attributes with jquery

WBOY
Release: 2021-12-01 09:57:42
Original
2730 people have browsed it

How to modify attributes of selected elements in jquery: 1. Use the "$(specified element)" statement to obtain the specified element object; 2. Use the attr() method to modify the attributes of the obtained element object. The syntax is: "Element object.attr(attribute,value)".

How to select elements and modify attributes with jquery

The operating environment of this tutorial: windows7 system, jquery3.2.1 version, Dell G3 computer.

How jquery selects elements and modifies attributes

We can modify the attributes of elements through the attr() method, and the attr() method settings Or return the attribute value of the selected element.

According to the different parameters of this method, its working method is also different. The syntax is:

$(selector).attr(attribute,value)
Copy after login

Let’s take an example to see how to select an element and modify its attribute value. The example is as follows:

<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $(".hang").attr("height","180");
  });
});
</script>
</head>
<body>
<button>设置指定元素的height属性</button>
<table border="1">
  <tr class="hang">
    <th>Month</th>
  </tr>
  <tr>
    <td>January</td>
  </tr>
    <tr>
    <th>Month</th>
  </tr>
  <tr>
    <td>January</td>
  </tr>
</table>
</body>
</html>
Copy after login

Output result:

How to select elements and modify attributes with jquery

Recommended related video tutorials: jQuery video tutorial

The above is the detailed content of How to select elements and modify attributes with jquery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!