gpt4 book ai didi

ajax - 使用 jQuery 和 Ajax 方法调用,如何查询 CraigsList

转载 作者:行者123 更新时间:2023-12-01 08:27:53 24 4
gpt4 key购买 nike

我之前尝试过这个,但未能成功查询 craigslist 的页面。

我想从以下位置返回页面:http://sfbay.craigslist.org/art/使用 ajax 调用,解析 html 并处理结果。就这个问题而言,我只对完成查询和检索 html 感兴趣。

最佳答案

你可以这样做:

<input type="button" id="btn" />

/* this will get the ajax response */
<div id="div_response"></div>

<script type="text/javascript">
$(function(){
$("#btn").click(function(){
$.ajax({
url:'process.php',
cache:false,
success:function(response){
$("#div_response").html(response);
}
});
});
});
</script>

process.php(注意:我不知道您将使用哪种语言,但在本例中我使用 php 进行展示)

$contents = file_get_contents('www.craiglist.com');

// you do the parsing whatever
// finally send back the response

echo $contents;

关于ajax - 使用 jQuery 和 Ajax 方法调用,如何查询 CraigsList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2354245/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com