作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个 jquery/javascript 语句正确且有效吗?
$('.icon_edit').click(function(){
$(this).parent().hide().siblings('span').hide();
});
<div class="dataBox">
<span>
<input class="chkbox" type="checkbox"/>
</span>
<span class="memName">test1</span>
<span class="memNum">9791091380</span>
<span class="memDesc">test 1</span>
<span>
<a class="icon-delete" > </a>
<a class="icon-edit" > </a>
</span>
<div>
<input class="editName"/>
<input class="editNum"/>
<input class="editDesc"/>
</div>
</div>
我实际上试图隐藏所选元素父元素+父元素的所有兄弟元素,这些元素是单个语句中的“span”元素。有一个更好的方法吗。?注意:实际上这段代码对我有用。但不确定它是否违反了 javascript/jquery 的任何语法或选择规则。这就是我在 2 条语句中做到的
$(this).parent().hide().siblings('span').hide();
$(this).parent().hide();
最佳答案
关于javascript - 在单个 jquery/javascript 语句中选择 parent 和 parent sibling ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32825040/
我是一名优秀的程序员,十分优秀!