*这发生在一个更大的代码块中,在for循环中。查看完整循环的帖子结尾。
我已经阅读了所有关于这个主题的帖子,但我还是迷路了。
我正在尝试将onclick事件分配给复选框。分配给onclick事件的函数需要访问定义复选框的范围内可用的变量(idvariable)。
var idvariable = parentChildList[i].children[j]["subjectid"];
var input = document.createElement("input");
input.type = "checkbox";
input.value = "";
input.onclick = function () {
return clicked(idvariable);
};
function clicked(id) {
alert(id);
};
我已经尝试了内联和命名函数的每个变体,但我无法弄清楚如何给单击函数访问idvariable。在上面的示例中,该变量的值未定义。
或者,如果我以这种方式尝试:
var input = document.createElement("input");
input.type = "checkbox";
input.value = "";
var idvariable = parentChildList[i].children[j]["subjectid"];
input.onclick = function (idvariable) {
return clicked(idvariable);
};
function clicked(id) {
alert(id);
};
我收到一条警告,上面写着[对象MouseEvent]。与我从我分配给onclick事件的方法名称中删除()的情况相同:
var idvariable = parentChildList[i].children[j]["subjectid"];
input.onclick = function () {
return clicked;
}(idvariable);
function clicked(id) {
return alert(id);
};
*整个循环:
for (var i = 0; i < parentChildList.length; i++) {
var row = table1.insertRow(-1);
var cell = row.insertCell(0);
cell.innerHTML =
"<h4 class=\"panel-title\"><a data-toggle=\"collapse\" data-parent=\"#accordion\" href=\"#collapse" + i + "\">" + parentChildList[i]["title"] + "</a></h4>";
if (parentChildList[i].children.length > 0) {
var row2 = table1.insertRow(-1);
var cell2 = row2.insertCell(0);
var table2 = document.createElement("table");
table2.className = "collapse";
table2.id = "collapse" + i;
cell2.appendChild(table2);
for (var j = 0; j < parentChildList[i].children.length; j++) {
var row3 = table2.insertRow(-1);
var cell3 = row3.insertCell(0);
var div = document.createElement("div");
div.className = "checkbox";
var label = document.createElement("label");
label.innerText = parentChildList[i].children[j]["title"];
var input = document.createElement("input");
input.type = "checkbox";
input.value = "";
input.setAttribute('subj', idvariable);
var idvariable = parentChildList[i].children[j]["subjectid"];
alert(idvariable);
input.onclick = function () {
return clicked(this.getAttribute('subj'));
};
function clicked(id) {
return alert(id);
};
cell3.style.padding = "0px 0px 0px 10px";
cell3.style.fontsize = "x-small";
cell3.appendChild(div);
div.appendChild(label);
label.insertBefore(input, label.childNodes[0]);
}
}
}
答案 0 :(得分:2)
onclick
处理程序接收Event
个对象。如果处理程序作为elem.onclick=handler
附加,那么该处理程序中的元素可用作this
。所以这是解决方法。
var idvariable = parentChildList[i].children[j]["subjectid"];
var input = document.createElement("input");
input.type = "checkbox";
input.value = "";
input.setAttribute('data-subj', idvariable);
input.onclick = function () {
return clicked(this.getAttribute('data-subj'));
};
function clicked(id) {
alert(id);
};
答案 1 :(得分:0)
您必须先使用以下代码将复选框附加到某个现有元素。
var element = document.getElementById("one").appendChild(input);
然后你可以通过使用以下内容获得父母......
var x = document.getElementById("someId").parentElement;
其中x将包含父元素。
此链接https://stackoverflow.com/a/9418326/886393与事件中的自定义数据(自定义事件)有关。希望有所帮助。
由于
伞兵