此代码应该从组合框中获取值,在网站中创建一个新段落,并将组合框值放入该段落中。我似乎在互联网上找不到可行的解决方案。这是代码:
var newParagraph = document.createElement("p");
var myDiv = document.getElementById("output");
comboBox.addEventListener("click", eventHandler);
function eventHandler(){
var result = comboBox.options[comboBox.selectedIndex].value;
addLabel(result);
}
function addLabel(result){
var newContent = document.createTextNode(result);
newParagraph.appendChild(newContent);
document.body.myDiv.appendChild(newParagraph);
}```
document.body
下没有myDiv属性。使用您在脚本中指定的myDiv变量。
function addLabel(result){
var newContent = document.createTextNode(result);
newParagraph.appendChild(newContent);
myDiv.appendChild(newParagraph);
}