jQuery繪製網格效果程式碼例項

antzone發表於2017-04-18

分享一段程式碼例項,它利用jQuery實現了繪製網格的效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type = "text/css">
body{
  background:#000000;
}
#antzone{
  width:380px;
  height:380px;
  margin:100px auto;
  background:#4b4b4b;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type = "text/javascript">
$(function(){
  var table = document.createElement("table");
  var tbody = document.createElement("tbody");
  table.style.borderCollapse = "collapse";
  for(var i = 0;i<20;i++){
    var tr = document.createElement("tr");
    for(var j = 0;j<20;j++){
      var td = document.createElement("td");
      td.style.border = "1px solid #dfdfdf";
      td.style.padding = "9px";
      tr.appendChild(td);
    }
    table.appendChild(tr);
  }
  document.getElementById("antzone").appendChild(table);
})
</script>
</head>
<body>
<div id = "antzone"></div>
 </body>
</html>

相關文章