问问题
422 次
1 回答
1
http://jsbin.com/owavux/2/edit
(工作原因SAMEORIGIN
)
$.ajax({
url: 'http://jsbin.com/owavux/1/edit',
success: function (data) {
var title = $(data).filter("title").text();
alert( title );
// To set that title to your current page do like:
document.title = title;
}
});
于 2013-06-30T23:14:32.850 回答