js_其他入口
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
<meta charset="UTF-8">
<!--<!– <script src="js_file01.js"></script>–> 尽量放后body前边-->
<script>
// function func1() {
// ele1=document.getElementById("id1";
// alert(ele1.nodeName);
// }
window.onload=function () {
var ele1=document.getElementById("id1");
alert(ele1.nodeName);
}
</script>
</head>
<body>
<p id="id1">hello</p>
</body>
</html>