こんにちは、div内にテーブルを作成していますが、Webページに表示されません。javascriptを使用してテーブルを作成する際の問題
Javascriptコード:
function CreateInterface(){
var table=document.createElement("table");
var tr = document.createElement("tr");
table.appendChild(tr);
var td = document.createElement("td");
tr.appendChild(td);
document.getElementById("welcome").appendChild(table);
}
テーブル
#right {
float:right;
width: 490px;
padding-right: 110px;
padding-top: 301px;
}
#welcome {
margin-right: 20px;
}
#previewWin {
background-color: #decea2;
width: 150px;
height: 200px;
font: 1.0em arial, helvetica, sans-serif, larger, bold;
padding: 5px;
position: absolute;
visibility: hidden;
border: 1px solid ;
overflow: hidden;
}
#previewWin h1, #previewWin h2 {
font-size: 1.0em;
}
PreviewWinが非表示のdivです:
<div id="right">
<h2 id="right1">hello !</h2>
<div id="previewWin">
</div>
<div id="welcome">
</div>
</div>
CSSが似ているように私のhtmlコードです今では元に表示されていますplorer ...私を助けてください...そして、このfinction CreateInterfaceはonclickイベントでトリガーします...ありがとう事前に
テーブルにコンテンツを追加してみます。 – karim79