gpt4 book ai didi

javascript - 如何选择在 ajax 请求中显示的内容?

转载 作者:行者123 更新时间:2023-11-28 16:37:37 25 4
gpt4 key购买 nike

如果我请求 URL http://www.google.com 怎么办?例如,通过 AJAX,在on success函数中,我只想在某个 div 中显示我感觉很幸运按钮?

例如

$.ajax({
url: 'www.google.com',
success: function(html) {
$('div').html(html);
}
});

这是为了显示整个页面,但我只想显示按钮。我该怎么做?

最佳答案

$.ajax({ 
url: 'www.google.com',
success: function(html) {
$('div').html($(html).find('input[name=btnI]'));
}
});

您可以将input[name=btnI]替换为您自己的条件。

关于javascript - 如何选择在 ajax 请求中显示的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3119397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com