3

当引用 HTML 中的 DIV 时,我能否请一些帮助来调用在 Javascript 中创建的函数。

这是我的功能:

        function testFunction()
        {
            alert("Test");
        }

我希望在 HTML 中进行以下引用时调用 testFunction:

<div id="testFunction"> 

我可以帮忙吗?

4

1 回答 1

3

您可以将调用附加到单击处理程序:

在标记中:

<div id="testFunction" onclick="testFunction()"> 

或在您的脚本块内:

function testFunction() {
   alert("Test");
}

var el = document.getElementById("testFunction");
el.onclick = testFunction;
于 2013-01-27T20:39:33.607 回答