2010-08-24 50 views
1

中聲明JavaScript時,它是什麼所謂的當您在<頭>中聲明javascript時,它叫什麼?它不是外部的,它不是內聯的......它被稱爲別的東西。它是什麼?當您在<head>

<html> 
<head> 
<script type="text/javascript"> 
function message() 
{ 
alert("This alert box was called with the onload event"); 
} 
</script> 
</head> 

<body onload="message()"> 
</body> 
</html> 

編輯:谷歌幫我找到了我正在尋找的詞 - 內部。我看到它在外部/內部/內聯css中使用。內部JavaScript是一個合適的術語?

回答

2

內聯是任何字面上嵌入在頁面中的JavaScript,無論是在頭部還是身體。如果它在通過<script src="..."><script>包含的外部文件中,那麼它不再是內聯。

2

它是內聯JavaScript,它只是內聯在頭上,而不是在內聯中。