将数据从php简单的dom解析器传递给jquery

时间:2011-06-30 21:04:49

标签: php jquery

我有这个简单的脚本:

<?php
include_once("simple_html_dom.php");

$content = file_get_html('http://en.wikipedia.org/wiki/Myst');
?>

我正在尝试做的是找到一种方法将它发送到jquery脚本....我需要在jquery中执行$ .ajax GET吗?我需要在此脚本中添加什么。

我用document.ready启动我的jquery代码....是否需要更改?

1 个答案:

答案 0 :(得分:0)

<?php
if(isset($_GET['getcontent'])){
    include_once("simple_html_dom.php");
    echo file_get_html('http://en.wikipedia.org/wiki/Myst');
}
?>

<script type="text/javascript">
$.get("content.php",{"getcontent":"true"},function(data){
    // data is content from php-script
    // do something with it
});
</script>