How jquery obtains the next element of the current element:
This section describes how to use jquery to get the next element of the current element, how to use the native JS to get the next element can refer to the native JS get the next element of the current element code instance section, the following directly read the code:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.51texiao.cn/" /><title>Ant Tribe</title><Scripttype= "Text/javascript"src= "Mytest/jquery/jquery-1.8.3.js"></Script> <Scripttype= "Text/javascript">$ (document). Ready (function(){ $("#bt"). Click (function(){ $("#box Li"). EQ (1). Next (). CSS ("Color","Red"); })})</Script> </Head> <Body> <ulID= "box"> <Li>Ant Tribe One</Li> <Li>Ant Tribe II</Li> <Li>Ant Tribe Three</Li> <Li>Ant Tribe Four</Li> <Li>Ant Tribe Five</Li></ul><inputtype= "button"ID= "BT"value= "View Effect"/></Body> </HTML>
The code above uses the next () function to get the next element of the second element and to set its font color to red.
The original address is: How does jquery get the next element of the current element section.
How jquery gets the next element of the current element