很抱歉,如果这是一个愚蠢的问题(我还是网络开发的新手),但是否可以在基本确认对话框消息中有链接?
现在,我有一个基本的确认弹出窗口
if (confirm("Bunch of text here"))
...
但客户要我在该确认框中添加一个链接,该链接将在新窗口中打开。在消息中添加html标签并不起作用,因为它是一个消息字符串。
任何建议将不胜感激。
谢谢!
答案 0 :(得分:0)
你可以制作一个模态并显示它,或者,甚至更简单,使用bootstrap的内置模态。
HTML:
<div class="button">Click</div>
<div class="overlay">
<div class="modal"></div>
</div>
CSS:
.button {
background-color: #aa0000;
color: #fff;
padding: 5px 40px;
display: inline-block;
cursor: pointer;
}
.overlay {
background-color: rgba(0, 0, 0, 0.8);
position: fixed;
height: 100%;
width: 100%;
display: none;
top: 0;
left: 0;
}
.modal {
left: 50%;
margin-left: -100px;
top: 50%;
margin-top: -100px;
background-color: #fff;
position: fixed;
height: 200px;
width: 200px;
}
JS:
$(function() {
var button = $('.button'),
overlay = $('.overlay'),
message = 'Message text',
modal = $('.modal');
button.on('click', function() {
overlay.css('display', 'block');
modal.html( message + '<a href="http://google.com"' + 'target="_blank">' + 'link' + '</a>');
});
});
答案 1 :(得分:0)
使用Javascript的confirm
功能无法做到这一点。为此,您需要一个自定义模式对话框。
如果你使用jQuery,你可以使用其中一个创建一个:vex,alertify和apprise来命名一些。
如果您不使用jQuery,可以通过为事件应用一些CSS和Javascripts来创建一个。您也可以关注this guide。