为什么jquery没有在我的网页上运行?

时间:2017-07-11 19:56:57

标签: javascript jquery

有谁知道为什么我的jquery不会运行?我尝试按下按钮点击或页面加载,但它不起作用。感谢



<head>
    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
</head>
<body>
    <iframe style="width:100%;height:700px;" id="frame" src="bing.com">
    <script>
        $(document).ready(function() {
            alert("working");
        });
    </script>
</body>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

您需要关闭iframe标记并输入完整的网址:

&#13;
&#13;
<head>
  <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  <script src="js/bootstrap.min.js"></script>
</head>

<body>
  <iframe style="width:100%;height:700px;" id="frame" src="http://bing.com"></iframe>
  <script>
    $(document).ready(function() {
      alert("working");
    });
  </script>
</body>
&#13;
&#13;
&#13;