コンテキストのタイトルを選択するにはどうすればよいですか?ページのタイトルを変更するためにそれを選択することになっています。
var handler = function(context){
document.title = //context's title
....
}
//sample context from ajax request
var context = '<!DOCTYPE html><html>\
<head><title>Hello</title></head>\
<body>\
<a href="#">Click Here</a><p>This is my sentence.</p>\
</body></html>';
.ajax{(
...
success: function(data){
handler(data);
}
});
編集:必要な場合に備えて、Doctypeを忘れました。コンテキストはAJAXリクエストからのものでした。