0

我正在尝试在 div/span 中加载 javascript 脚本链接。当我运行页面时,脚本必须在 span 内。一旦页面被加载,脚本内容将显示在 span 中。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Home</title>
<script src="https://code.jquery.com/jquery-1.11.1.js" type="text/javascript"></script>
<style>

</style>

<script>
$(document).ready(function() 
     {
        var s = document.createElement("script");
        s.type = "text/javascript";
        s.src = "test.js"; //https link 
        // Use any selector
        $(".loader").append(s);
     });
     </script>
</head>
<body>
 <span class="loader">

  </span>
</body>

我也对其他解决方案持开放态度。

4

1 回答 1

-1

我在您的代码中看到的唯一问题是 jquery 的来源是不正确的,因为它使用https和脚本标签的 order 参数

尝试替换以下内容:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.js"></script>
于 2014-10-28T16:43:17.450 回答