gpt4 book ai didi

javascript - 使用 bootstrap 和 jQuery 加载 XML

转载 作者:行者123 更新时间:2023-11-28 05:29:21 24 4
gpt4 key购买 nike

我正在尝试使用 bootstrap 和 jquery 在我的一个 html 页面中加载一个 xml 页面。在纯简单的 html 中,我可以毫无错误地加载。例如

<!DOCTYPE html>
<html lang="en">

<head>
<title></title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function(){
$("#button1").click(function(){
$('#text').load("./collection.html");
alert( "Load was performed." );
});
});
</script>
</head>
<body>
<button id="button1" type="submit">Click Me</button>
<div>
<pre id="text"></pre>
</div>
</body>
</html>

问题是当我尝试在使用 Bootstrap 的其他 html 页面中做同样的事情时 - 我看不到任何内容,但是我可以看到警告消息。

这是我使用 Bootstrap 的 html 代码

<script>
$(document).ready(function(){
$("#xmlResponseCollection").click(function(){
$('#txtXmlResponseCollection').load("./collection.html");
alert( "Load was performed." );
});
});
</script>

<tr>
<td><strong>Response</strong></td>
<td>
<button type="button" class="btn btn-info btn-lg" data-toggle="modal"
data-target="#modalXml" id="xmlResponseCollection">Show xml response</button>
<div id="modalXml" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
&times;
</button>
<h4 class="modal-title">XML Response</h4>
</div>
<div class="modal-body">
<pre id="txtXmlResponseCollection"></pre>
</div>
</div>
</div>
</div>
</td>
</tr>

知道如何解决这个问题吗?

最佳答案

您是否尝试包含 bootstrap.js 文件?模态框需要它

http://getbootstrap.com/javascript/#modals

关于javascript - 使用 bootstrap 和 jQuery 加载 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38595943/

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