如何在 jQuery 中选择“根”级元素的属性?
以下不起作用(返回未定义):
jQuery(document).ready(function() {
somehtml = "<a href='http://example.com'>An example</a>";
theurl = jQuery('a',somehtml).attr('href');
alert(theurl);
}
知道我错过了什么吗?我敢肯定,根级元素很明显......
非常感谢,加夫