document.write('
解析:
原生的写法:
document.getElementsByTagName(\'a\').onclick = function () {}
用 jQuery 的话就这么写:
$(\'a\').click(function(){
});
');