我有这个简单的脚本:
<?php
include_once("simple_html_dom.php");
$content = file_get_html('http://en.wikipedia.org/wiki/Myst');
?>
我正在尝试做的是找到一种方法将它发送到jquery脚本....我需要在jquery中执行$ .ajax GET吗?我需要在此脚本中添加什么。
我用document.ready启动我的jquery代码....是否需要更改?
答案 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>