使用jquery隐藏所有li标签
请帮助我完成我的代码。 我想隐藏 body onload 上的所有
标签。$(document).ready(function () {
$('li > ul').hide();
});
请给我正确的代码变体!
Please help me to complete my code.
I want to hide all <li>
tags on body onload.
$(document).ready(function () {
$('li > ul').hide();
});
Please give me the right variant for the code!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是
ul > li
,而不是li > ul
It's
ul > li
, notli > ul
这将搜索并隐藏页面上的每个
标记。最好缩小搜索范围以提高性能 例如:
$('#mydiv li')
其中mydiv
是 ul 标签的 id。
This will search and hide every
<li>
tag on the page. It is better to narrow down the search to improve performance Ex:$('#mydiv li')
wheremydiv
is the id of the ul tag<ul id="mydiv">
.