16

我正在尝试使用 javascript 创建一个按钮,该按钮具有一个 onclick 事件,该事件调用在头部中定义的函数,该函数将相对于按钮的 dom 对象作为参数。我该怎么做呢?

前任:

<html>
<head> <script>function blah(obj){alert(obj.value)}</script></head>
<body>
<button onclick="blah(this.parentNode.value);"></button>
</body>
</html>

javascript:

var newButton = document.createElement("button");
???

最后,我希望新按钮与现有按钮相同。

4

2 回答 2

38
function createButton(context, func) {
    var button = document.createElement("input");
    button.type = "button";
    button.value = "im a button";
    button.onclick = func;
    context.appendChild(button);
}

window.onload = function() {
    createButton(document.body, function() {
        highlight(this.parentNode.childNodes[1]);
        // Example of different context, copied function etc
        // createButton(this.parentNode, this.onclick);
    });
};

那是你要的吗?

于 2011-12-28T01:38:29.933 回答
0

您还可以使用内置的 setAttrbute javascript 函数。

var newButton = document.createElement("button")
newButton.setAttribute("onclick", "blah(this.parentNode.value)")

希望它会有所帮助

于 2020-07-04T13:07:48.543 回答