代碼出來了,大家可以引薦
<input?name="button"?type="button"?onclick="openy()"?value="點擊我"??/>?<script>??????function?openy(){ var?his?=?confirm("是否進(jìn)入"); if(his==true){ var?bottyr?=?prompt("請輸入正確的網(wǎng)址:");? if(bottyr){ window.open(bottyr,'_blank'); }else{ window.open('http://idcbgp.cn/code/412','_blank'); } }else{ document.write("謝謝光臨"); }????????}??????</script>
隨便輸入正確網(wǎng)址,然后就可以直接跳過去了。
按題目的話自己改成默認(rèn)網(wǎng)址,然后條件改成
(bottyr?==?"")
2020-07-03
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript">? ?
? ? ?function openWindow()
? ? ?{
? ? ? ? var mymessage= confirm("確認(rèn)打開新網(wǎng)頁嗎");
? ? ? function myopen()
? ? ?{? ? ? ? ? window.open('http://idcbgp.cn','_blank','width=400,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes');?
? ? }
? ? ? ?if (mymessage==true)
? ? ? ?{
? ? ? ? ? myopen();
? ? ? ?}
? ? ??
? }?
</script>
?</head>?
2020-06-05
你這寫代碼的風(fēng)格有點emmmm,就有點看不懂你在寫什么?
2020-05-27
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript">??
? ? function openWindow() {
? ? ? ? var message = confirm("是否打開網(wǎng)頁?");
? ? ? ??
? ? ? ? if (message == true) {
? ? ? ? ? ? window.open('http://idcbgp.cn','_blank', 'height=500, width=400, menubar=no, toolbar=no');
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? document.write("do not open.");
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>