javascript 使用方式

第一种:内嵌在html节点中

<html>
<body>

<input type="button" onclick="document.body.style.backgroundColor='lavender';"
value="Change background color" />

</body>
</html>


第二种:调用方法

<html>
<body>

<script>
function ChangeBackground()
{
document.body.style.backgroundColor="lavender";
}
</script>

<input type="button" onclick="ChangeBackground()"
value="Change background color" />

</body>
</html>

第三种:导入js文件

 <script src=“url” type="text/javascript"></script>


javascript 使用方式,布布扣,bubuko.com

javascript 使用方式

上一篇:Java 实现 淘宝秒杀 聚划算 自动提醒 源码


下一篇:java远程调用(rmi)常见的两个错误