1. 程式人生 > >div層中填加文字和帶標籤內容

div層中填加文字和帶標籤內容

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文件</title>
<script language="javascript" type="text/javascript">
 function test(){
  alert("test");
  document.getElementById("aa").innerHTML="<font color='red'>填充資訊</font>";
  document.getElementById("aa").innerText="dfsfafsfdsf";//這兩個屬性新增有衝突,只能實現一個,這裡實現後面一個新增到div裡

  }

</script>
</head>

<body onload="test();">

<div id="aa"></div>
</body>
</html>