-2

我想用 ajax 将此代码加载到我的网站中吗?我该怎么办?

   <ul class="rounded">
                        <li><div id="card" class="quickflip-wrapper"><p id="cardText"></p></div>
                        </li></ul>            
                    <ul class="rounded">
                        <li><div class="right">Nästa</div>
                        </li></ul>


                       <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
             <script type="application/javascript" src="http://www.enormous.se/dev/mobile2/main/assets/js/jquery.js"></script>
               <script type="application/javascript" src="http://m.drickspel.com/assets/js/olspelet.js"></script>

我以前使用过这段代码,但它不起作用。上面的代码在 content.php 中。当我在浏览器中加载 content.php 时,它运行良好,但在网站上却不行。

    $(document).ready(function() {
   $("#content").load("content.php");
})

这是网站:http ://www.enormous.se/dev/mobile2/main/#vem

4

1 回答 1

1

我查看了您的页面源代码,其中一个问题是您没有加载 jQuery。您正在加载一个名为 jquery.js 的文件,该文件实际上包含一个 jQuery 插件。

于 2013-03-01T01:02:57.707 回答