在我的简单书签中,我调用文档的所有input
元素,然后尝试访问每个元素的selectionStart
:
javascript: (function () {
var inps=document.getElementsByTagName('input');
for (var i = 0; i < inps.length; i++) {
var el = inps[i];
if ('selectionStart' in el) {
console.log("o: " + (typeof el));
console.log("x: " + (typeof el.nonexistent));
console.log("s: " + (typeof el.selectionStart));
}
}
})();
此代码在控制台中提供以下行:
“o:object” - 正如所料,
“x:undefined” - 正如所料,
但是对于el.selectionStart
,没有给出输出,并且控制台中显示“NS_ERROR_FAILURE”。任何人都能解释为什么会这样吗? (另外一般性问题 - 我在哪里可以找到Firefox引发的此类错误的含义或任何细节?)