我正在使用原型来更改按钮的 onclick 功能。以下代码运行良好。
$('button_id').setAttribute('onclick','test();');
但以下不起作用
$$('div#divid button.buttonclass').setAttribute('onclick','test();'); or
$$('button.buttonclass').setAttribute('onclick','test();');
我只想更改按钮onclick
功能。该按钮位于 div 元素内。按钮button
只有类名,没有 id 属性。