dom操作程式碼例項

antzone發表於2018-05-25

本章節分享一段程式碼例項,它實現了用javascript操作dom的功能。

都是非常基礎的操作,比如設定尺寸背景顏色等。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
* {
  margin: 0;
  padding: 0;
}
body {
  background: #eee;
  font-family: "Microsoft YaHei",Arial,Helvetica,sans-serif,"宋體";
}
#box {
  font-size: 12px;
  height: 200px;
  width: 400px;
  margin: 100px auto;
}
#txt {
  height: 200px;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  line-height: 20px;
  background: #f7f9fb;
  box-shadow: 3px 3px 3px #000;
  border-left: 2px dashed #ccc;
}
h2 {
  padding-top: 25px;
}
p {
  padding-top: 5px;
}
.bottom-button {
  text-align: center;
  margin-top: 20px;
}
</style>
<script type="text/javascript">
//定義"改變顏色"的函式
function changeColor() {
  document.getElementById("txt").style.color = "#fff";
  document.getElementById("txt").style.backgroundColor = "#6ac3fc";
}
//定義"改變寬高"的函式
function changeSize() {
  document.getElementById("txt").style.width = "180px";
  document.getElementById("txt").style.height = "220px";
}
//定義"隱藏內容"的函式
function hideContent() {
  document.getElementById("txt").style.display = "none";
}
//定義"顯示內容"的函式
function displayContent() {
  document.getElementById("txt").style.display = "block";
}
//定義"取消設定"的函式
function cancelSet() {
  var txt = confirm("是否取消設定?");
  if (txt == true) {
    document.getElementById("txt").removeAttribute("style");
  }
}
</script>
</head>
<body>
  <div id="box">
    <div id="txt">
    </div>
    <form class="bottom-button">
      <input type="button" value="改變顏色">
      <input type="button" value="改變寬高">
      <input type="button" value="隱藏內容">
      <input type="button" value="顯示內容">
      <input type="button" value="取消設定">
    </form>
  </div>
</body>
</html>

相關文章