中聲明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是一個合適的術語?