JS代码放到全局内容页尾(全局 : html > body ( footer_js_after ))
<script>!function() {
$("a").each(function() {
var url = $(this).attr('href');
if (url.length > 0 && url.indexOf('http') >= 0 && url.indexOf(window.location.host) < 0) {
// console.log(url);
$(this).click(function() {
$.confirm('即将离开网站,请注意您的帐号和财产安全。</br>' + $(this).attr('href') + '', function() {
window.open(url);
});
return false;
});
}
});}();</script>