首页 > 代码库 > javascript 使用方式

javascript 使用方式

第一种:内嵌在html节点中

<html>
<body>

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


第二种:调用方法

<html>
<body>

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

<input type="button" onclick="ChangeBackground()"
value=http://www.mamicode.com/"Change background color" />>
第三种:导入js文件

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