在mouseover javascript上加载js文件

时间:2012-12-14 11:21:56

标签: javascript javascript-events

大家好,有可能在鼠标悬停或点击等某些事件上加载js文件。 我尝试加载整个js文件而不是特定的功能。提前谢谢。

2 个答案:

答案 0 :(得分:1)

此示例在按钮

onClick()事件上加载指定的js文件
<button onclick="myFunction()">Click me</button>

<script type="text/javascript">
   function myFunction(){

          var file = document.createElement("script");
          file.setAttribute("type", "text/javascript");
          file.setAttribute("src", "js/js_file.js");
          document.getElementsByTagName("head")[0].appendChild(file);

   }
</script>

同样,您也可以在按钮的onMouseOver()事件或任何其他HTML元素上加载js。

答案 1 :(得分:0)

使用jQuery的示例

 <!DOCTYPE html>
    <html>
        <head>
            <title>Test</title>
            <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
            <script type="text/javascript">
                $(document).ready(function() {
                    $('#myButton').mouseenter(function() {
                        $("head").append($("<script />").prop("type", "text/javascript").prop("src", "http://code.jquery.com/jquery.mobile-1.2.0.js"));
                    });
                });
            </script>
        </head>
        <body>
            <input type="button" id="myButton" value="CLICK" />
        </body>
    </html>