gpt4 book ai didi

javascript - 使用ajax将值放入spring MVC中的 Bootstrap 模式弹出字段值中以从数据库获取数据

转载 作者:行者123 更新时间:2023-12-03 12:17:39 24 4
gpt4 key购买 nike

我需要使用ajax从spring MVC中的模式弹出字段内的数据库获取值。我认为,我们需要使用 javascript 将值放置在模态弹出字段中。

非常感谢帮助!!!...

最佳答案

您可以尝试在模态中调用自定义网址,如下所示:

function load_modal(ev){
if (ev && ev.preventDefault)
ev.preventDefault(); // prevent navigation
var url = "" //construct your url with all parameters that you need
//avoid cache
url +="&_="+(new Date()).getTime()
$("#modal").load(url, function() { // load the url into the modal
$(this).modal('show'); // display the modal on url load
});
return false; // prevent the click propagation
}

该网址调用服务器端的操作,并在将在模式中显示的结果页面中填充所需的数据

关于javascript - 使用ajax将值放入spring MVC中的 Bootstrap 模式弹出字段值中以从数据库获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24603424/

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