$(function(){
$('<a/>', {
id: 'foo',
href: 'http://google.com',
title: 'Become a Googler',
rel: 'external',
text: 'Go to Google!'
}).appendTo('body');
});
我知道过去在旧版本的 IE 中传递带有属性的对象字面量是行不通的。但是,它现在似乎可以工作了(IE7 模式下的 IE10):
http://jsfiddle.net/4Gr6f/show
是否已针对所有 IE 版本进行了修复?还是它只在 IE7 模式下工作而不是原生 IE7?