在这里使用原型有点挣扎=我已经创建了这个函数
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) {
}
});