因为你是靠
return false来阻止默认行为的。
试试看在
</body>上方加入
( function () {var $target = document.getElementById( 'recommend_add' )
if ( !$target )
return
if ( $target.addEventListener )
$target.addEventListener( 'click', function ( event ) {
event.preventDefault()
}, false )
}() )
P.S.未做测试,仅支持了移动端。
<script>window.location.href="新页地址" //将本页替换成新页面
window.open("新页地址") //弹出一个新页面
</script>
可以打开,不过需要完整的url地址。类似window.open('http://127.0.0.1:8888/test_demo/test3.html')
但是需要设置浏览器,一般浏览器会阻止弹出框的。