如何创建带有操作的HTML按钮并使用PerlScript将其附加到DOM?

时间:2012-01-13 22:09:16

标签: perl dom dhtml activeperl perlscript

我特别谈到ActiveState的IE嵌入式脚本语言“PerlScript”。

我目前有以下内容,但是当按下按钮3时,不会发生任何操作。

<html>
    <head>
        <title>perlscript baby!</title>
    </head>

    <script language="perlscript" event="onload" for="window">
        sub yawn
        {
            $window->alert("hi!");
        }
        sub createNew
        {
            $b = $window->document->createElement('button');
            $b->{value} = "button 3";
            $b->{onclick} = "yawn()";
            $window->alert("Button: " . $b->{outerHTML});
            $window->document->body->appendChild($b);
        }
        sub enable
        {
            undef $window->document->all('buttn 2')->{disabled};
        }
    </script>

   <body>
       <input id='enabler' type='button' value='button 1' onclick='enable()'></input>
       <input id='action' type='button' value='button 2' disabled onclick="createNew()"></input>
   </body>
</html>

1 个答案:

答案 0 :(得分:3)

显然,这是一件非常难以实现的事情。浏览器(在我的情况下是IE9)期望onclick属性的值(当从脚本设置时)是函数引用而不是字符串。我们可以通过将您的代码转换为等效的JavaScript来证明这一点。如下所示。

<script language="javascript">
    function yawn()
    {
        window.alert("hi!");
    }
    function createNew()
    {
        b = window.document.createElement('button');
        b.value = "button 3";
        b.onclick = "yawn()";
        window.alert("Button: " + b.outerHTML);
        window.document.body.appendChild(b);
    }
    function enable()
    {
        window.document.getElementById("action").removeAttribute("disabled");
    }
 </script>

如果我们运行它,将出现第三个按钮,但单击它将不执行任何操作。我们只需进行一些小调整即可使用JavaScript。

function createNew()
{
    // ...
    b.onclick = function() { yawn(); };
    // ...
}

现在,如果我们将其转换回等效的perlscript,我们可以看到它仍然不起作用。

sub yawn
{
    $window->alert("hi!");
}
sub createNew
{
    $b = $window->document->createElement('button');
    $b->{value} = "button 3";
    $b->{onclick} = sub { $window->yawn(); };
    $window->alert("Button: " . $b->{outerHTML});
    $window->document->body->appendChild($b);
}
sub enable
{
    $window->document->getElementById("action")->removeAttribute("disabled");
}

事实上,它有点糟糕,因为现在,如果您使用自己喜欢的HTML调试器来检查按钮3元素,那么根本就没有onclick处理程序。那么我们可以做些什么来解决这个问题呢?嗯,答案实际上非常简单 - 不要使用PerlScript动态创建元素,而是静态创建它们并使用PerlScript隐藏和显示它们。

<html>
    <head>
        <title>perlscript baby!</title>
    </head>
    <script language="perlscript">
        sub yawn
        {
            $window->alert("hi!");
        }
        sub createNew
        {
            $window->document->getElementById('button3')->style->{display} = "inline";
        }
        sub enable
        {
            $window->document->getElementById("action")->removeAttribute('disabled');
        }
    </script>
    <body>

        <input id='enabler' type='button' value='button 1'
            onclick='javascript:enable();' />

        <input id='action' type='button' value='button 2' disabled
            onclick='javascript:createNew();' />

        <input id='button3' type='button' value='button 3' style='display:none;'
            onclick='javascript:yawn();'/>

    </body>
</html>

这似乎可以很好地完成这项工作,虽然我不确定它适合您的用例。当然,在这段代码中有一个非常奇怪的事情:每个onclick元素的input处理程序明确表示它正在调用JavaScript函数。显然,这不是真的,因为这些函数实际上是PerlScript子例程。但是,如果删除javascript:前缀,则永远不会调用处理程序。我认为这进一步凸显了浏览器对JavaScript的偏见。

希望有所帮助!