打开网页就运行js方法

打开网页就运行js方法

js方法

<html>
    <head>
    head>
    <body>
    <script type = "text/javascript">
        window.onload = function()
        {
            alert("hello");
        }
    script>
    body>
html>

jquery方法

第一种:
$(document).ready(function(){
        alert("xx")
})

第二种:
$(function(){
        alert("xx")
})

你可能感兴趣的:(JS)