第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定

JavaScript入門篇

難度入門
時(shí)長 1小時(shí)35分
學(xué)習(xí)人數(shù)
綜合評分9.57
5511人評價(jià) 查看評價(jià)
9.8 內(nèi)容實(shí)用
9.5 簡潔易懂
9.4 邏輯清晰
  • <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />

    <title>js入門編程挑戰(zhàn)2</title>

    <style type="text/css">

    body{font-size:12px;}

    #txt{

    ? ? height:400px;

    ? ? width:600px;

    border:#333 solid 1px;

    padding:5px;

    }

    p{

    line-height:18px;

    text-indent:2em;}

    </style>

    </head>

    <body>

    ? <h2 id="con">JavaScript課程</H2>

    ? <div id="txt">?

    ? ? ?<h5>JavaScript為網(wǎng)頁添加動態(tài)效果并實(shí)現(xiàn)與用戶交互的功能。</h5>

    ? ? ? ? <p>1. JavaScript入門篇,讓不懂JS的你,快速了解JS。</p>

    ? ? ? ? <p>2. JavaScript進(jìn)階篇,讓你掌握J(rèn)S的基礎(chǔ)語法、函數(shù)、數(shù)組、事件、內(nèi)置對象、BOM瀏覽器、DOM操作。</p>

    ? ? ? ? <p>3. 學(xué)完以上兩門基礎(chǔ)課后,在深入學(xué)習(xí)JavaScript的變量作用域、事件、對象、運(yùn)動、cookie、正則表達(dá)式、ajax等課程。</p>

    ? </div>

    ? <form>

    ? <!--當(dāng)點(diǎn)擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->

    ? ? <input type="button" value="改變顏色" onclick="change_color()">??

    ? ? <input type="button" value="改變寬高" onclick="change_wight()">

    ? ? <input type="button" value="隱藏內(nèi)容" onclick="display_off()">

    ? ? <input type="button" value="顯示內(nèi)容" onclick="display_on()">

    ? ? <input type="button" value="取消設(shè)置" onclick="cancle_op()">

    ? </form>

    ? <script type="text/javascript">

    //定義"改變顏色"的函數(shù)

    var comment=document.getElementById("txt")


    // 保存原始樣式

    var originalStyles = {

    ? ? color: comment.style.color,

    ? ? backgroundColor: comment.style.backgroundColor,

    ? ? width: comment.style.width,

    ? ? height: comment.style.height,

    ? ? display: comment.style.display

    };


    function change_color() {

    ? ? comment.style.color="red";

    ? ? comment.style.backgroundColor ="blue";

    }


    //定義"改變寬高"的函數(shù)

    function change_wight() {

    ? ? comment.style.width="300px";

    ? ? comment.style.height="200px";

    }


    //定義"隱藏內(nèi)容"的函數(shù)

    function display_off() {

    ? ? comment.style.display="none";

    }


    //定義"顯示內(nèi)容"的函數(shù)

    function display_on() {

    ? ? comment.style.display="block";

    }


    //定義"取消設(shè)置"的函數(shù)

    function cancle_op() {

    ? ? var is_cancel=confirm("是否取消設(shè)置?");

    ? ? if(is_cancel)

    ? ? {? ?

    ? ? ? ? comment.style.color=originalStyles.color;

    ? ? ? ? comment.style.backgroundColor =originalStyles.backgroundColor;

    ? ? ? ? comment.style.width=originalStyles.width;

    ? ? ? ? comment.style.height=originalStyles.height;

    ? ? ? ? comment.style.display=originalStyles.display;

    ? ? }

    }


    ? </script>

    </body>

    </html>


    查看全部
  • 在 JavaScript 中,可以使用?var、let?和?const?關(guān)鍵字來聲明變量。

    var:ES5 引入的變量聲明方式,具有函數(shù)作用域。

    let:ES6 引入的變量聲明方式,具有塊級作用域。

    const:ES6 引入的常量聲明方式,具有塊級作用域,且值不可變。

    查看全部
  • Object.style.property=new style;

    Object.style.display="none"/"block";

    Object.className="new name";

    例如:con.style.backgroundColor="red";

    backgroundColor

    height

    width

    color

    font

    fontFamily

    fontSize

    查看全部
    0 采集 收起 來源:改變 HTML 樣式

    2025-05-16

  • Object.innerHTML 用于獲取? 或? 替換HTML元素的內(nèi)容

    查看全部
    0 采集 收起 來源:innerHTML 屬性

    2025-05-16

  • window.open('href','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes')

    mywin.close();關(guān)掉窗口

    查看全部
  • alert()彈出消息提示框

    confirm()彈出消息對話框,包括一個確定按鈕,一個取消按鈕

    查看全部
  • document.write(mystr+mychar+"sssss"+"<br>"+"&nbsp"+"ssss");

    變量不用加“”,輸出固定值加“”

    查看全部
  • if(判斷條件){

    }

    else if{

    }

    else{

    }

    查看全部
  • <script src="script.js"></script>引用外部JS文件

    查看全部
  • document.geiElementById("id").style.color="blue"; 表示設(shè)置某個id顏色為藍(lán)色

    查看全部
  • 代碼好難

    查看全部
  • function openWindow(){

    ?????var queren=confirm("確定打開嗎?");

    ?????if(queren==true){

    ????? ???var myweb=prompt("請輸入網(wǎng)址","http://idcbgp.cn");

    ?????????if(myweb!=null){

    ?????????????window.open(myweb,"_blank",'width=400,heigth=500,menubar=no,toolbar=no')

    ?????????}

    ?????????else{

    ???????? ????alert("再見");

    ?????????}

    ??????}?

    }

    查看全部
    0 采集 收起 來源:編程練習(xí)

    2025-04-05

  • 不是一定要獲取到id名,直接用也行,但document.getElementById()這個方法得記得,這個作業(yè)涉及前面未學(xué)過的方法--removeAttribute(),對于return(flase)和return(trun)一直不太理解。

    查看全部
    0 采集 收起 來源:編程挑戰(zhàn)

    2025-04-03

  • fun是函數(shù)

    查看全部
  • window.open('','','') 打開窗口

    查看全部
  • var a = prompt() 文本框提示框

    查看全部
  • var a=confirm() 消息對話框

    查看全部
  • alert() 輸出提示框

    document.write() 輸出流

    查看全部
  • 第一種:輸出內(nèi)容用""括起,直接輸出""號內(nèi)的內(nèi)容。

    第二種:通過變量,輸出內(nèi)容

    第三種:輸出多項(xiàng)內(nèi)容,內(nèi)容之間用+號連接。

    第四種:輸出HTML標(biāo)簽,并起作用,標(biāo)簽使用""括起來。

    查看全部
  • document.write("hello");
    查看全部
  • <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>函數(shù)調(diào)用</title>

    ? ?<script type="text/javascript">

    ? ? ? function contxt() //定義函數(shù)

    ? ? ? {

    ? ? ? ? ?alert("哈哈,調(diào)用函數(shù)了!");

    ? ? ? }

    ? ?</script>

    </head>

    <body>

    ? ?<form>

    ? ? ? <input type="button"? value="點(diǎn)擊我" onclick=" contxt()? " />??

    ? ?</form>

    </body>

    </html>

    查看全部
  • <!DOCTYPE HTML>

    <html>

    ? ? <head>

    ? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=gb18030">

    ? ? ? ? <title>插入js代碼</title>

    ? ? ? ? <script type="text/javascript">

    ? ? ? ? document.write("開啟JS之旅!");

    ? ? </script>

    ? ? </head>

    ? ? <body>

    ? ? </body>

    </html>

    查看全部
  • <!DOCTYPE HTML>

    <html>?

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>熱身</title>

    </head>

    <body>

    ? <p id="p1">我是第一段文字</p>

    ? <p id="p2">我是第二段文字</p>

    ??

    ? <script type="text/javascript">

    document.write("hello");

    document.getElementById("p1").style.color="blue";

    ? </script>

    </body>

    </html>

    查看全部
  • getElementById是一個document對象的方法,可以通過它來獲得指定id的html元素。

    例如在頁面里表單元素你可以給它設(shè)置id值,或name值來區(qū)別同種類型的不同元素,當(dāng)你設(shè)置id document.getElementById("id")來得到這個元素,從而通過document.getElementById("id").value 得到元素的值。類似的方法還有document.getElementsByName("name")通過元素名稱獲得元素對象。document.getElementsByTagName("form")通過標(biāo)簽名稱獲得元素。

    比如 <div id="test"></div>

    document.getElementById("test") 就可以獲取到這個對象了

    查看全部
首頁上一頁1234567下一頁尾頁

舉報(bào)

0/150
提交
取消
課程須知
該課程是針對新手的一個簡單基礎(chǔ)的課程,讓您快速了解JS,通過一些簡單的代碼編寫體會JS。如果您已經(jīng)對JS有所了解,可以跳過本課程,學(xué)習(xí)JS進(jìn)階課程,進(jìn)一步學(xué)習(xí)JS相應(yīng)的基礎(chǔ)知識。學(xué)習(xí)本課程,希望您至少具備HTML/CSS基礎(chǔ)知識,認(rèn)識常用的標(biāo)簽。
老師告訴你能學(xué)到什么?
1. 理解JavaScript基礎(chǔ)語法; 2. 掌握常用語句的使用方法; 3. 學(xué)會如何獲取DOM元素及進(jìn)行簡單操作。

微信掃碼,參與3人拼團(tuán)

微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

友情提示:

您好,此課程屬于遷移課程,您已購買該課程,無需重復(fù)購買,感謝您對慕課網(wǎng)的支持!