我正在使用内部 jQuery 创建一个随机 html 页面,我试图让 jQuery 隐藏三个段落中的两个,并执行此操作 5 秒,但是当我加载 html 文件时,所有段落都立即可见。任何人都可以帮忙吗?
<html>
<head>
<script src="jquery-1.9.1.js"></script>
</head>
<body>
<script>
var $ = jQuery;
$("p").each(function (idx) {
if(idx >= 1) {
$(this).hide(500);
}
});
</script>
<p>This is the first paragraph</p>
<p>This is the second paragraph</p>
<p>This is the third paragraph</p>
</body>
</html>