我想使用一個按鈕將選擇列表添加到我的網站。 我需要使用節點,因爲我需要能夠在DOM中訪問它,所以我可以稍後檢索它的值,所以我不能使用innerHTML。createTextNode圍繞我的選擇列表不需要的引號
我的問題是,createTextNode似乎圍繞我的列表引號,所以它不會顯示。誰能幫我出
<!doctype html>
<html>
<head>
<title> Pop Up </title>
<script>
function change()
{
var theDiv = document.getElementById("dropDownList");
var content = document.createTextNode("<select name='scrapbookID' id='scrapbookID'><option value='15'>one</option><option value='18'>two</option><option value='20'>three</option><option value='21'>four</option></select>");
theDiv.appendChild(content);
}
</script>
<style type = "text/css">
</style>
</head>
<body>
<div id = "signout">
Your are Currently signed in.<br />
<a href = "#" id = "signOutPHP">Sign Out</a>
<div id = "dropDownList">
<button onclick="change()">Add List</button>
</div>
</div>
</body>