課程
/前端開發
/JavaScript
/JavaScript入門篇
不是特別懂
2019-05-16
源自:JavaScript入門篇 2-7
正在回答
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>? ?
? <script type="text/javascript">??
? ?function openWindow(){?
? ? // 新窗口打開時彈出確認框,是否打開
? ? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ? var openWindow1=confirm("請問是否打開");
? ? if(openWindow1==true){
? ? ? ? var openWindow2=prompt("請輸入你要打開的網址,"+"默認網址為http://www.xianlaiwan.cn/");
? ? ? ? if(openWindow2!=null){
? ? ? ? ? ?window.open(openWindow2,'_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? ? ? else{
? ? ? ? ? ?window.open('http://www.xianlaiwan.cn/','_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? }
? ? else{
? ? ? ? window.close();
? ? ? ?
? ?}
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
<pre>? //測試,亂寫的
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
for(int i = 0 ; i< 10 ;++i)
????for(int j =0 ; j < i ; ++ j)
????????printf(%d*%d=%d , i , j , i*j);
}
</pre>
重置代碼后,把這段加進去就行了,注意字符串與變量的區別
??? function openWindow()
{??????? var newWin ;??????? if ( confirm("將打開新對話框") == true)??????? {??????????? newWin = prompt("輸入要打開的網址,默認是126","www.126.com");??????? }??????? window.open(newWin , '_blank' ,'width=400,height=500,menubar=no,toolbar=no' );??? }
慕標2283219
<script type="text/javascript">
function?openWindow() { var?affirm=confirm("是否打開新窗口?") if(affrim==true) { ??window.open('http://www.xianlaiwan.cn','_blank','width=400,height=500,menubar=no,toolbar=no'); } }
</script>
<body>
<input name="button" type="button" onClick="openWindow()"value="在新窗口打開">
</body>
<script type="text/javascript>
var mytxt = confirm("是否在新窗口打開?");
if(mytxt=true){
window.open("http://www.xianlaiwan.cn","_blank","width=400,height=500,menubar=no,toolbar=no");
舉報
JavaScript做為一名Web工程師的必備技術,本教程讓您快速入門
2 回答就這一節的內容。。。
1 回答寫了代碼后提交后不顯示內容
1 回答代碼不好寫
6 回答修改代碼內容
5 回答innerHTML這節,代碼寫的沒錯,為什么右側不顯示?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2019-05-22
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>? ?
? <script type="text/javascript">??
? ?function openWindow(){?
? ? // 新窗口打開時彈出確認框,是否打開
? ? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ? var openWindow1=confirm("請問是否打開");
? ? if(openWindow1==true){
? ? ? ? var openWindow2=prompt("請輸入你要打開的網址,"+"默認網址為http://www.xianlaiwan.cn/");
? ? ? ? if(openWindow2!=null){
? ? ? ? ? ?window.open(openWindow2,'_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? ? ? else{
? ? ? ? ? ?window.open('http://www.xianlaiwan.cn/','_blank','width=400px,height=500px,menubar=no,toolbar=no');}
? ? }
? ? else{
? ? ? ? window.close();
? ? }
? ? ? ?
? ?}
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2019-05-18
<pre>? //測試,亂寫的
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
for(int i = 0 ; i< 10 ;++i)
????for(int j =0 ; j < i ; ++ j)
????????printf(%d*%d=%d , i , j , i*j);
}
</pre>
2019-05-18
重置代碼后,把這段加進去就行了,注意字符串與變量的區別
??? function openWindow()
{
??????? var newWin ;
??????? if ( confirm("將打開新對話框") == true)
??????? {
??????????? newWin = prompt("輸入要打開的網址,默認是126","www.126.com");
??????? }
??????? window.open(newWin , '_blank' ,'width=400,height=500,menubar=no,toolbar=no' );
??? }
2019-05-17
<script type="text/javascript">
</script>
<body>
<input name="button" type="button" onClick="openWindow()"value="在新窗口打開">
</body>
2019-05-17
<script type="text/javascript>
var mytxt = confirm("是否在新窗口打開?");
if(mytxt=true){
window.open("http://www.xianlaiwan.cn","_blank","width=400,height=500,menubar=no,toolbar=no");
}
</script>