JS/JQuery获取当前元素的上一个/下一个兄弟级元素等元素的方法

2021-06-21 00:02

阅读:458

标签:this   cti   font   ide   ++   16px   put   log   for   

$(function(){
    //遍历获取的input元素对象数组,绑定click事件
    var len = $("input[type=‘file‘]").length;
    for(var i = 0; i ){
        $("input[type=‘file‘]").eq(i).click(function(){
            $(this).next().val("");
            $(this).next().hide();
            $(this).css("width","200px");
        })
    }
})

JS获取:

 

jQuery获取:

 

JS/JQuery获取当前元素的上一个/下一个兄弟级元素等元素的方法

标签:this   cti   font   ide   ++   16px   put   log   for   

原文地址:http://www.cnblogs.com/goloving/p/7183803.html


评论


亲,登录后才可以留言!