显然,这是一件非常困难的事情。浏览器(在我的情况下为 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 的偏见。
希望有帮助!