打开网页直接运行是要调用window.onload( )函数:
<html>
<head>
</head>
<body>
<script type = "text/javascript">
window.onload = function()
{
alert("hello");
}
</script>
</body>
</html>
直接拷贝,即可运行,主要功能在function()中实现就可以了。
打开网页直接运行是要调用window.onload( )函数:
<html>
<head>
</head>
<body>
<script type = "text/javascript">
window.onload = function()
{
alert("hello");
}
</script>
</body>
</html>
直接拷贝,即可运行,主要功能在function()中实现就可以了。