var page = require('webpage').create(); page.onConsoleMessage = function(msg) { page.clipRect = JSON.parse(msg); page.render("qq.png"); }; page.open('http://www.qq.com/',function(status){ if(status === 'success'){ page.includeJs('http://code.jquery.com/jquery-1.10.2.min.js',function(){ page.evaluate(function() { var offset = $('#mainnav').offset(), left = offset.left, top = offset.top; var width = $('#mainnav').outerWidth(), height = $('#mainnav').outerHeight(); console.log(JSON.stringify({ left: left, top: top, width: width, height: height })); }); phantom.exit(); }); } });