gpt4 book ai didi

javascript - 如何在加载网页时运行脚本

转载 作者:行者123 更新时间:2023-12-02 16:17:41 25 4
gpt4 key购买 nike

如何让此脚本在加载网页时运行,而无需按按钮

    $(document).on('ready', function() {

$('#findme').on('click', function() {
$('#message').html('Loading...');
$.ajax( {
url: "https://api.mercadolibre.com/geolocation/whereami",
success: function(data) {
var city = data.city_name;
var country = data.country_name;
$('#message').text("You are in " + city + ", " + country + '!');
}

});
});

});

最佳答案

你可以尝试这个,它只是你的代码,我删除了单击功能上的按钮,因此它将在文档就绪功能上执行

$(document).on('ready', function() {

$('#message').html('Loading...');
$.ajax( {
url: "https://api.mercadolibre.com/geolocation/whereami",
success: function(data) {
var city = data.city_name;
var country = data.country_name;
$('#message').text("You are in " + city + ", " + country + '!');
}

});
});

关于javascript - 如何在加载网页时运行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29428976/

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