<li onclick="closes();">BTC</li>
alert跳转到指定页面
<script type="text/javascript">
function closes(){
alert('BTC暂停充值!!');
// history.back();
location.href="http://47.92.74.202:81/payment.php";
}
</script>
站内跳转可以不加网址
<script type="text/javascript">
function closes(){
alert('BTC暂停充值!!');
// history.back();
location.href="/payment.php";
}
</script>
by 小鬼PSer 2017-09-21 09:21:23