JS/JQuery获取当前元素的上一个/下一个兄弟级元素等元素的方法
2021-06-21 00:02
标签:this cti font ide ++ 16px put log for JS获取: jQuery获取: JS/JQuery获取当前元素的上一个/下一个兄弟级元素等元素的方法 标签:this cti font ide ++ 16px put log for 原文地址:http://www.cnblogs.com/goloving/p/7183803.html$(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获取当前元素的上一个/下一个兄弟级元素等元素的方法
文章链接:http://soscw.com/index.php/essay/96643.html