最后我让它工作了。我正在一步一步地解释它,所以有类似问题的人可以解决这个问题:
- 放入
#
您想要 JavaScript 函数的 wordpress 菜单 URL。
- 从源代码跟踪此菜单 url (li ID) 链接。在我的情况下 li id 是
menu-item-88
. (这个 id 是由 wordpress 自动生成的,并且总是唯一的)
- 将以下代码放在
</head>
当前主题的 head 标记(打开 header.php 查找)的末尾之前。
- 不要忘记将 menu-id 更改
menu-item-88
为您的。
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
var menuID = jQuery('#menu-item-82');
findA = menuID.find('a');
findA.click(function(event){
if(confirm("YOU ARE LEAVING THE WEBSITE" + '\n' + "" + '\n' + "You are about to leaving the website to go to the external forum" + '\n' + "" + '\n' + "The FORUM will open in a new tab"))
{
window.open('http://www.yourforum.com/','_blank'); //This will open the website in a new tab
}
});
});
</script>
这需要 jQuery。因此,如果未加载 jQuery,请将以下行也添加到您的脑海中。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
这将提示您,您将离开网站。如果单击确定,它将在新选项卡中打开给定的链接。
行。仅此而已..这会变魔术。