curl、crowbar...传递给 jquery
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,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.