如何在chrome控制台中获取css定位器的xml表示?

时间:2017-03-05 12:30:00

标签: google-chrome dom google-chrome-devtools

此处预期的xml表示,

enter image description here

而是显示以下内容,

enter image description here

2 个答案:

答案 0 :(得分:1)

你应该试试

console.dirxml

当你将整个结果集从函数$(“css selector”)传递给val names = df.columns 函数时,你传递的不是HTML节点,而是来自你的css选择器的数组(由jquery包装)。

答案 1 :(得分:1)

他们去年以统一阵列外观为借口打破了它,见crbug.com/607682

暂时你可以通过追加AttributeError: module 'urls' has no attribute 'app'来显示jQuery $的单个元素:

[0]

通过.apply:

展开包含多个元素的数组
$('.some.selector')[0]

或定义一个jQuery包装器:

console.log.apply(console, $('.some.selector'))

并使用它:

function $log(selector) { console.log.apply(console, jQuery(selector)) }