我在通过 jquery 显示 php 文件的内容时遇到问题。内容是http://pastebin.com/V8RxqPe3
这是我的问题:如果该内容在 mysql 数据库中,则content.php
文件查询以获取该内容并回显它。当我打开 localhost/content.php 时,一切都很好。但是,如果我通过 jquery(如下)显示内容,我会得到一些黑色问号(奇怪的字符)。
<div id="results"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$.get('http://localhost/content.php', function(data) {
$('#results').html(data);
});
});
</script>
当我手动替换所有'
内容\'
并将整个内容放入content.php
文件中的变量中时,然后通过上面相同的 jquery 脚本回显该变量,一切都很好。
有谁知道如何解决这个问题?,因为我的数据库中有很多这样的内容,我想通过上面的 jquery 脚本显示。
谢谢!