gpt4 book ai didi

jquery - Modal 加载后如何调用函数?

转载 作者:行者123 更新时间:2023-12-01 00:45:06 30 4
gpt4 key购买 nike

我有以下功能。我想在 myModal 加载完成时调用该函数。这是我到目前为止所拥有的。

(function ($) {


$.ajaxSetup({"error":function(XMLHttpRequest,textStatus, errorThrown) {
alert(textStatus);
alert(errorThrown);
alert(XMLHttpRequest.responseText);
}});

function get_fun() {

$.getJSON('/sms/fetch/', function(json) {
alert('json: ' + json + ' ...');
});


};


})(jQuery, window, document);

页面:我现在如何调用我的函数?

<script src="/js/smart.js"></script>

<script>
$(document).ready(function() {
$('#myModal').on('shown', function() {


get_fun()
})
});
</script>

我收到错误:ReferenceError:get_fun 未定义

最佳答案

在 W3 学校找到了这个,对我有用。试试看。 https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_js_modal_event_shown&stacked=h

    $("#myModal").on('shown.bs.modal', function () {
alert('The modal is fully shown.');
});

关于jquery - Modal 加载后如何调用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16277072/

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