Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 bootstrap 和 bootbox.js 以模态显示图像?
我正在从 ajax 获取数据(具有图像 url),并希望使用 bootstrap 和 bootbox.js 在模式中显示
bootbox 最酷的地方在于您传递给它的消息字符串不必是纯文本。它可以是任何 html 代码。然后,您可以使用此功能以模式显示来自 url 的图像:
function showImage(url) { bootbox.alert("Do you like my image?<br/><img src='" + url + "'>", function() { console.log("It was awesome!"); }); };