如题 thanks
<!DOCTYPE html>
<html>
<body>
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
<script>
x=document.getElementsByTagName("p");
for (i=0;i<x.length;i++)
{
document.write(x[i].innerHTML);
document.write("<br>");
}
</script>
</body>
</html>
为什么结果是:
Hello World!
The DOM is very useful!
This example demonstrates the length property.
Hello World!
The DOM is very useful!
This example demonstrates the length property.
怎么会出现2次呢? 求解答 在chrome上
先到素材网站去找一些炫丽的功能特效,然后看它们的源码,最后自己做一个。
到w3cshool上去看,对学习javascript基础很有帮助
具体的实用例子有没有推荐的
图片循环转换
流畅回到页首标记
建议跳jquery.
jQuery也是基于js的
浏览网页时 看到的比较炫的效果 可以自己实现一下
嗯噶
@mushishi: 第一部分是html代码。
<p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>This example demonstrates the <b>length</b> property.</p>
第二部分是你的js执行之后的结果。
@412742171: 对哦。。。 我还一直想这段js怎么一直输出2次呢。。。
@mushishi: 醉了。。。。
你把JS代码去掉看看效果,在加上再看看效果,你就知道为什么了。
我也醉了。。