Skip to content

Instantly share code, notes, and snippets.

@matsuhisa
Created September 21, 2015 06:00
Show Gist options
  • Save matsuhisa/3df8fe57b64464ac4a26 to your computer and use it in GitHub Desktop.
Save matsuhisa/3df8fe57b64464ac4a26 to your computer and use it in GitHub Desktop.
phantom.js で、jQuery を利用する
var page = require('webpage').create();
page.open('http://tabelog.com/tokyo/A1301/A130101/13142530/', function() {
page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
var og_title = page.evaluate(function() {
return $("meta[property='og:title']").attr("content");
});
console.log(og_title);
phantom.exit();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment