4

我有以下js代码:

function createConBox() {
   var charDiv = document.getElementById("characterList");  // reference to "characterList" div
   header = document.createElement("p");  // creates the <p> tag
   charDiv.appendChild(header);  // adds the <p> tag to the parent node
   title = document.createTextNode("Show Only Lines By:");  // creates the text string
   header.appendChild(title); // adds the text string to the parent node

   // create select box and add elements
   selectBox = document.createElement("select");   
   selectBox.setAttribute("id", "cList");
   charDiv.appendChild(selectBox);

   charNames = uniqueElemText("h3");   // array of character names
   newOption = document.createElement("option");
   selectBox.appendChild(newOption);
   newOptionTitle = document.createTextNode("Show All Lines");
   newOption.appendChild(newOptionTitle);
   for (i = 0; i < charNames.length; i++) {
      newOption = document.createElement("option");
      selectBox.appendChild(newOption);
      newOptionTitle = document.createTextNode(charNames[i]);
      newOption.appendChild(newOptionTitle);
   }

}

function showLines() {
   alert("The Box has been changed");
}

每次更改框中的选项时,我都希望它调用“showLines()”。但是,每次我尝试实现一个事件时,我只能在页面加载时触发它,之后再也不会触发它。任何帮助将不胜感激。

4

3 回答 3

4

selectBox.onchange = showLines;应该可以解决您的问题。

在某些浏览器中,只有在模糊选择框后才会触发 onchange。为了克服这个,你可以使用onclick而不是onchange

于 2013-03-17T20:20:44.683 回答
3

我的猜测是你正在这样做:

selectBox.onchange = showLines();

如果是这种情况,只需删除()

selectBox.onchange = showLines;
于 2013-03-17T20:19:59.023 回答
0

当我动态传递 id 以防万一时,我会做什么:

var selectcell = tablerow.insertCell(1);
var selectelmt = document.createElement('select');
selectelmt.name = 'Select';
selectelmt.value = 'select';
selectelmt.classList = 'form-control input-sm cobclass';
selectelmt.onchange= onselectchange(i);
selectelmt.id = 'cobselect' + i;
selectelmt.options[0] = new Option('select');
selectcell.appendChild(selectelmt);
// ddrbind(i);
show();
i++;`
于 2017-03-30T13:20:21.813 回答