我想用 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");
})