JavaScript-對事件作出反應\改變 HTML 內容\改變 HTML 樣式\寫入HTML輸出

來源:互聯網
上載者:User

標籤:

對事件作出反應\

<!-- alert() 函數在 JavaScript 中並不常用,但它對於代碼測試非常方便。

onclick 事件只是您即將在本教程中學到的眾多事件之一。-->

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<center>
<body>
<h1>我的第一段 Java Script 代碼</h1>

<p>
    JavaScript 能夠對事件作出反應。比如對按鈕的點擊:
</p>

<button type="button" onclick="alert(‘Welcome!‘)">點擊這裡</button>
</body>
</center>
</html>

改變 HTML 內容\

<!--您會經常看到 document.getElementByID("some id")。這個方法是 HTML DOM 中定義的。
DOM(文件物件模型)是用以訪問 HTML 元素的正式 W3C 標準。
-->

<!-- 在這個例子中應當注意
1.getElementById 千萬不要寫錯
2.id號可以是不同的,根據自己的需要自己定義,調用的時候要一一對應
3.編碼格式要注意,在head中添加utf-8
4.<button type="button" onclick="myFunction()">點擊這裡</button>這段代碼不是在script標籤中!!!
5.結合事件處理來修改自己的代碼
-->


<!DOCTYPE html>
<html>
<head>
    <title>Change html content</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>

<center>
<body>
<h1>我的第一段 JavaScript</h1>

<p id="demo">
JavaScript 能改變 HTML 元素的內容。
</p>

<p id="Angel">
U o _ o U
</p>

<script>
    function myFunction()
    {
        x=document.getElementById("demo");//尋找元素
        x.innerHTML="Hello JavaScript!";//改變內容
    }

        function myFunction_1()
    {
        y=document.getElementById("Angel");
        y.innerHTML="Today is a fun day!";
    }

</script>
<button type="button" onclick="myFunction()">點擊這裡</button>
<button type="button" onclick="myFunction_1()">點擊這裡</button>
</body>
</center>
</html>

改變 HTML 樣式\

<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<center>
<p id="demo">


Happy Birthday To You !!!


</p>
<body>
<script>
    function myfunction()
    {
        x=document.getElementById("demo") // 找到元素
        x.style.color="#ff0000";          // 改變樣式
    }
</script>

<button typte="button" onclick="myfunction()">點擊開始</button>
</body>
</center>
</html>

寫入HTML輸出

<!--只能在 HTML 輸出中使用 document.write。如果您在文檔載入後使用該方法,會覆蓋整個文檔。-->

<!DOCTYPE html>
<html>
<center>
<head>
    <title></title>
</head>
<body>
<script>
    document.write("<h1>This is a heading</h1>");
    document.write("<p>This is a paragraph</p>");
</script>
</body>
</center>
</html>

JavaScript-對事件作出反應\改變 HTML 內容\改變 HTML 樣式\寫入HTML輸出

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.