`

next prev

 
阅读更多

 

很多时候在写页面时候需要一些隐藏域来记录一些标识性的内容,例如,上传头像时需要在上传之后返回avatarID,一般记录到页面的隐藏域里,然后与其他form信息一起提交到服务器上保存数据库,此时我们经常使用到动态的添加隐藏域,可以添加到已存在的id标签之后或者之前,提取这些动态添加标签的内容时可以使用$("#id").next()或者是$("#id").prev()无需再赋值id。

 

 

 

<body>

<div class="div">

<h2>你好吗</h2>

<div id="div">很好</div>

</div>

 

</body>

<script type="text/javascript">

 

$(document).ready(function(){

alert($('body').find('.div').html());

alert($('h2').next().html());--------------很好

alert($('#div').prev().html());---------------你好吗

});

 

 

</script>

分享到:
评论

相关推荐

    powerpoint-remote-proxy:Office外接程序,用于控制PowerPoint nextprev

    PowerPoint应用程序和Web应用程序,可以从Web代理命令来控制PowerPoint功能,例如next / prev。执照Microsoft开发人员经验和福音版权所有(c)Microsoft Corporation。 版权所有。 本代码和信息按“原样”提供,没有...

    链表类的封装(功能:排序,插入,删除)

    prev.next = prev.next.next ``` 5. **链表排序**:链表的排序可以使用各种算法实现,如归并排序、插入排序等。这里我们简要介绍插入排序的链表实现: ```python def sort_list(self): if not self.head or ...

    数据结构单链表的常用操作代码

    prev.next = current.next current = None ``` 4. 查找节点 在单链表中查找特定值的节点,需要从头节点开始遍历链表,直到找到目标节点或遍历结束。 ```python def search_node(self, data): current = self....

    链表对两位数操作

    = next_node and prev.next.num &gt;= next_node.num: prev = prev.next next_node.next = prev.next prev.next = next_node return dummy.next ``` 然后是删除操作。在链表中删除一个节点,我们需要找到这个节点...

    python-leetcode面试题解之第24题两两交换链表中的节点-python题解.zip

    prev.next = curr.next curr.next = next_node if next_node: prev = curr curr = next_node else: break return dummy.next ``` 在这个解决方案中,我们创建了一个虚拟头节点`dummy`,用于简化边界条件的...

    蓝桥杯备战基础知识点.doc

    new_node.next = prev_node.next prev_node.next = new_node def delete_node(self, key): # 删除具有特定键值的节点 curr_node = self.head if curr_node and curr_node.data == key: self.head = curr_node...

    prevnext-1.0.1-pl.transport.zip_Links_modx_prevNext 1.0.1-pl

    标题中的"prevnext-1.0.1-pl.transport.zip_Links_modx_prevNext 1.0.1-pl"指的是一个MODX Revolution插件的版本,名为"prevNext",版本号为1.0.1-pl。这个插件是用于创建页面间的前后导航链接的,即在网页中提供...

    算法原理测试题

    prev.next = prev.next.next self.length -= 1 def insert(self, index, value): new_node = Node(value) if index == 0: new_node.next = self.head self.head = new_node else: prev = self.head for _...

    jquery-next-prev-slideshow

    **jQuery Next Prev 幻灯片**是一个基于JavaScript库jQuery实现的简单幻灯片插件,主要功能是提供向前(上一个)和向后(下一个)切换幻灯片的交互功能。这种类型的幻灯片在网页设计中非常常见,用于展示图片、文本...

    android-swipewizard:动态nextprev寻呼机,其中每个步骤都定义流程

    适用于Android的滑动向导动态的下一个/上一个寻呼机,其中每个步骤都定义了流程。主意片段的查看寻呼机。 每个步骤都对应一个片段,并自行定义下一步和上一步。 这使向导步骤的动态链接变得容易。...

    链表类 实现对不同数据的链表操作

    prev.next = new_node ``` 这个`sort_insert`方法会将新节点插入到已排序的链表中,保持链表的排序顺序。如果链表为空或者新节点的值小于头节点的值,新节点将成为新的头节点。否则,我们遍历链表找到适当的位置...

    jQuery 选择器用法实例分析【prev + next】

    `prev + next`选择器是jQuery中的组合选择器,它允许我们同时选取紧随某个元素之前的同辈元素(`prev`)和紧随其后的同辈元素(`next`)。这个选择器是基于CSS的相邻兄弟选择器(adjacent sibling selector)的概念...

    jQuery帮助文档

    prev + next prev ~ siblings 基本 :first :last :not :even :odd :eq :gt :lt :header :animated 内容 :contains :empty :has :parent 可见性 :hidden :visible 属性 [attribute] [attribute=...

    安卓 增加两个按钮(prev,next)实现问题的遍历,等问题。

    在安卓开发中,实现一个应用来遍历一系列问题并提供“上一个问题(Prev)”和“下一个问题(Next)”的导航功能,涉及到的核心技术主要包括用户界面设计、数据管理以及控制逻辑。以下是对这个主题的详细说明: 1. *...

    GridView的经典入门

    PagerStyle-Mode="NextPrev" // 分页模式为NextPrev PagerStyle-NextPageText="Next" PagerStyle-PrevPageText="Previous" PagerStyle-HorizontalAlign="Center" PagerStyle-Position="TopAndBottom" ...

    JQuery新版中文手册

    prev + next prev ~ siblings 基本 :first :last :not(selector) :even :odd :eq(index) :gt(index) :lt(index) :header :animated :focus1.6+ 内容 :contains(text) :empty :has(selector) :...

    Jquery 1.3 简体中文手册

    prev + next prev ~ siblings 基本 :first :last :not :even :odd :eq :gt :lt :header :animated 内容 :contains :empty :has :parent 可见性 :hidden :visible 属性 [attribute] [attribute=...

    datawindow.net2.0_Beta2_Test_Guideline(wat).pdf

    该属性允许设置分页导航栏的样式(BarStyle)、导航器类型(如NextPrev、Numeric、QuickGo等)、位置及可见性等。 - **自定义NavigatorType显示**:通过修改NextPrevNavigator、NumericNavigator和QuickGo ...

    JQuery 1.3 中文参考手册

    prev + next prev ~ siblings 基本 :first :last :not :even :odd :eq :gt :lt :header :animated 内容 :contains :empty :has :parent 可见性 :hidden :visible 属性 [attribute] [attribute=...

Global site tag (gtag.js) - Google Analytics