我在我的网站上有这个JS来显示自定义文本消息,并且消息有一个超链接。但是,它会在当前窗口中打开它,我想确保它在新选项卡中打开。在这种情况下,我无法弄清楚如何实现这一目标。
var conceptName = jQuery('#pa_analise_objeto').find(":selected").val();
if(conceptName=='sem_revisao') {
jQuery("#displayCustomMsg").html("<p>The model will be <br/>printed automatically <a href='https://LINK.HERE.COM' style='color: #202020;'><u>verificação manual</u></a></p>");
}
答案 0 :(得分:4)
将target='_blank'
属性用于<a>
代码。
var conceptName = jQuery('#pa_analise_objeto').find(":selected").val();
if(conceptName=='sem_revisao'){
jQuery("#displayCustomMsg").html("<p>The model will be <br/>printed automatically <a target='_blank' href='https://LINK.HERE.COM' style='color: #202020;'><u>verificação manual</u></a></p>");
}
答案 1 :(得分:1)
将target="_blank"
添加到您的锚标记中,它会打开一个新标签。
<a target="_blank" href='https://LINK.HERE.COM' style='color: #202020;'><u>verificação manual</u></a>