JavaScript能做什么
JavaScript能够改变HTML元素的内容
例如:JavaScript能把span元素的内容修改为“hello word”。
<span id="">
My first JavaScript!
</span>
JavaScript能够改变HTML元素的属性值
例如:JavaScript能把a元素的超链接修改为 modify.html。
<a href="login.html">登录</a>
JavaScript能够改变HTML元素的CSS
例如:JavaScript能把p元素的字体大小改为:30px。
<p style="font-size: 15px;">八月秋高风怒号,卷我屋上三重茅。</p>
JavaScript能够隐藏HTML元素
例如:JavaScript能把input元素隐藏起来。
<input type="text" name="poet" id="" value="" />
JavaScript能够显示HTML元素
例如:JavaScript能把input元素显示出来。
<input hidden="hidden" type="text" name="novel" id="" value="" />
(认识JavaScript 二)[https://www.jianshu.com/p/a70729e4803e]
(认识JavaScript 三)[https://www.jianshu.com/p/234dbae5fed8]
全文请阅读:
https://www.kancloud.cn/fanrongqi/javascript/676450