jQ:add()、end() 旧城等待, 2023-06-30 05:27 2阅读 0赞 ### .add(): ### ### 集中操作 ### ### .end(): ### ### 回退操作 ### <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>温故而知新</title> <style></style> </head> <body> <div> xyz</div> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li class="test">7</li> </ul> </body> <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script> <!-- <script src="./myjQuery.js"></script> --> <script> /* .add(): 集中操作 .end(): 回退操作 */ $("div") .add("ul") .css({ backgroundColor: '#ff0000' }) $("ul") .css({ color: '#0000ff' }) .find("li") .css({ backgroundColor: "ffff00" }) .end() .css({ color: "#000000" }) </script> </html>
还没有评论,来说两句吧...