我使用的是jQuery,在使用开发工具栏检查IE中页面的DOM时,我看到许多元素都将sizset
和sizcache
属性添加到了该元素。我在Chrome或Firefox中看不到这些吗?另外,我看到页面上的许多元素对于这些字段具有相同的值,这使我相信这是一个全局值,但是有些元素具有不同的值吗?
<html xmlns="http://www.w3.org/1999/xhtml" sizcache="66" sizset="0">
<head>...</head>
<body sizcache="66" sizset="0">
<div class="ui-datepicker-group ui-datepicker-group-first" sizcache="18" sizset="0">
</body>
</html>
有谁知道为什么IE仅显示这些内容,以及它们的作用是什么?
最佳答案
http://groups.google.com/group/jquery-en/browse_thread/thread/2382a66a1ce9edf6/168046b517318240?lnk=gst&q=nodeIndex#168046b517318240
看起来nodeIndex
和sizcache
和sizset
都在内部用于计算第n个子代。
关于jquery - sizcache和sizset在jQuery中的作用是什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3782709/