Posted in Javascript onJanuary 30, 2017
本文实例讲述了jQuery使用siblings获取某元素所有同辈(兄弟姐妹)元素用法。分享给大家供大家参考,具体如下:
siblings()属于jQuery筛选类的API,用来查找某个元素的所有同辈元素(所有兄弟姐妹)。
<div id="contentHolder"> <input type="button" value="1" id="button1"></input> <input type="button" value="2" id="button2"></input> <input type="button" value="3" id="button3"></input> </div>
假如需要实现如下功能:点击某个按钮的时候,该按钮背景色变成#88b828,其他按钮背景色变成#15b494。这个时候,siblings这个API很有用,也很简单。
$(function(){ $("#contentHolder input[type='button']").click(function(){ $(this).css("background","#88b828"); $(this).siblings().css("background","#15b494"); }); })
希望本文所述对大家jQuery程序设计有所帮助。
jQuery使用siblings获取某元素所有同辈(兄弟姐妹)元素用法示例
- Author -
aitangyong声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@