query the html taken from PHP's file_get_contents using jQuery
If I have
$html = file_get_contents('http://www.some-url.com/index.php');
how do I query 开发者_开发百科the html using jQuery?
You will need to output the HTML onto the page then use jQuery to query it once the page is loaded.
精彩评论