JQuery下一个选择器或类似的东西

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery下一个选择器或类似的东西相关的知识,希望对你有一定的参考价值。

我有像html的代码

 <ul>
    <li>Some Name <a class="rud" href="#">remove</a><input type="text" value="one" readonly="readonly" name="array" /></li>
     <li>Some other name <a class="rud" href="#">remove</a><input type="text" value="two" readonly="readonly" name="array" /></li>
</ul> 

我想点击<a>重命名输入名称和值。

结果应该是

<li>Some Name <a class="rud" href="#">undo</a><input type="text" value="one" readonly="readonly" name="deleted" /></li>

关于文档就绪点击事件的Jquery

 $(document).ready(function() {
        $(".rud").click(function() {
           // alert(this).next().val();
           // get input button in this <li></li>.
           // change name
           $(this).text("undo");



        });
    });
答案
$(".rud").click(function() {
    $(this)
        .text("undo")  // change link text
        .next(':input') // go to nex input
        .attr('name','deleted'); // chage name attr 
});​

DEMO

以上是关于JQuery下一个选择器或类似的东西的主要内容,如果未能解决你的问题,请参考以下文章

几个非常实用的JQuery代码片段

类似于在 jQuery 中浏览文件的东西

CSS 是不是有类似 jQuery 的 :has() 的东西?

高效Web开发的10个jQuery代码片段

jquery.datepair日期时分秒选择器

jQuery文档就绪