curl、crowbar...传递给 jquery

发布于 2024-11-17 20:16:40 字数 717 浏览 2 评论 0原文

<?php
function get_html($url)
{
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, 'http://127.0.0.1:10000/?url=' . $url . '&delay=3000&view=as-is');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$html = curl_exec ($curl);
return $html;
}
?>

我使用这个 php 代码使用 crowbar 访问 html...我的问题是,如何将 html 传递给 jquery 进行某些处理(抓取)。

我的 jquery 以 document.ready(function() 开头,因为 crowbar 实际上在浏览器中加载 DOM,这会起作用吗?

这是我的一些 jquery 代码:

 $(document).ready(function(){
    var title = $('title').text();
    $.ajax({
type:           "POST",
url:            "tosql.php",
data:           {title:title}
});
    });

我只获取标题(用于测试目的),因为我将其传递给 php存储在mysql中

<?php
function get_html($url)
{
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, 'http://127.0.0.1:10000/?url=' . $url . '&delay=3000&view=as-is');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$html = curl_exec ($curl);
return $html;
}
?>

Im using this php code to access the html using crowbar...my question is, how would I pass the html to jquery for some processing (scraping).

My jquery starts with the document.ready(function(), would this work since crowbar actually loads the DOM in a browser?

This is some of my jquery code:

 $(document).ready(function(){
    var title = $('title').text();
    $.ajax({
type:           "POST",
url:            "tosql.php",
data:           {title:title}
});
    });

Im only getting the title (for test purposes) because I pass this to php to be stored in mysql

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

恋你朝朝暮暮 2024-11-24 20:16:40

是的,jQuery 可以在通过 document.ready 包装器加载后操作 DOM 中的所有内容。如果您需要更轻松的操作,请让 crowbar 将数据渲染为

Yes, jQuery can manipulate everything in the DOM after it loads via the document.ready wrapper. If you need easier manipulation, have crowbar render data as an object or array inside of <script> tags. If you have more code to show I can give a more complete answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文