この .ajax get からすべての HTML を警告する方法はありますか?
function testq() {
var acronyms = ["fubar", "snafu", "gnu"];
$.each(acronyms, function(index, element) {
$.ajax({
url: "https://encrypted.google.com/search?q=" + element,
dataType: "html",
success: function(html) {
var $container = $("#leftnav", html); // look for a specific element in the returned HTML
jAlert($container);
}
});
});
}
これはデバッグ専用です。後で、.ajax ページ get から取得した情報を変更します。