1

在这里使用原型有点挣扎=我已经创建了这个函数

Event.observe(window, 'load', function() {

if ($$('#test li:first')!=null) {
   $('test').down('li').down('a').update('Test');
}
});

基本上,它适用于找到 #test li:first 的页面,但在没有返回的页面上

$("test").down("li") is undefined

我只是希望它基本上只有在它发现元素不起作用时才起作用?

编辑:已解决

Event.observe(window, 'load', function() {

try { 

if ($$('#test li:first')!=null) {
   $('test').down('li').down('a').update('Test');
} } 

catch(ex) {
}

});
4

1 回答 1

4

这并没有真正解决它。您只是发现了一个很容易修复的错误。

试穿这个尺寸:

$$('#test li:first-child').invoke('update', 'Test');
于 2010-03-02T03:33:03.250 回答