2020
10-09
10-09
前端开发基础javaScript的六大作用
javaScript基础详解首先讲javaScript的摆放位置:<script>与</script>可以放在head和body之间,也可以body中或者head中JavaScript的六大作用:1直接在script输出document.write("<h1>Thisisaheading</h1>");//document.write表输出,括号中h1标签同样有效2对事件作出反应<buttontype="button">//点击这里</button>//onclick代表当点击是触发事件,alert会弹框3改变HTML内容x=document.getElementById("demo")//查找元素...
继续阅读 >