1. 程式人生 > >javascript 使用方式

javascript 使用方式

asc ont document 方法 div fun text popu article

第一種:內嵌在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 使用方式