admin管理员组文章数量:1341745
When I inspect an input field that has a value, the value appears empty in the debugger like this:
I was just wondering why? Debugger performance? Or perhaps something related to security? Or maybe I need to switch something on/off?
The reason why I am wondering is that it makes debugging more difficult for me in certain situations, like right now when the field loads empty while console logged .value
returns the value that is supposed to load but didn't for some reason:
console.log( 'before LoadFromLocalStorage' );
console.log( 'input element:' );
console.log( document.getElementById( 'email' ) );
console.log( 'input element value:' );
console.log( document.getElementById( 'email' ).value );
document.getElementById( 'email' ).value = sessionStorage.email;
console.log( 'after LoadFromLocalStorage' );
console.log( 'input element:' );
console.log( document.getElementById( 'email' ) );
console.log( 'input element value:' );
console.log( document.getElementById( 'email' ).value );
P.S. it actually shows up in the field when I set timeout long enough. 1ms is enough in about 75% of tests, but sometimes it fails to show up even with 100ms timeout. So apparently something is going on during that time, but I have no idea what. It would be really nice if I could log when it actually appears in the input field.
EDIT:
I solved the problem with the empty input field. I used element.innerHTML += "a lot of html"
elsewhere in my code and due to its destructive nature it wiped all the input fields before it pleted appending html. I replaced it with .insertAdjacentHTML
and it worked like a charm.
When I inspect an input field that has a value, the value appears empty in the debugger like this:
I was just wondering why? Debugger performance? Or perhaps something related to security? Or maybe I need to switch something on/off?
The reason why I am wondering is that it makes debugging more difficult for me in certain situations, like right now when the field loads empty while console logged .value
returns the value that is supposed to load but didn't for some reason:
console.log( 'before LoadFromLocalStorage' );
console.log( 'input element:' );
console.log( document.getElementById( 'email' ) );
console.log( 'input element value:' );
console.log( document.getElementById( 'email' ).value );
document.getElementById( 'email' ).value = sessionStorage.email;
console.log( 'after LoadFromLocalStorage' );
console.log( 'input element:' );
console.log( document.getElementById( 'email' ) );
console.log( 'input element value:' );
console.log( document.getElementById( 'email' ).value );
P.S. it actually shows up in the field when I set timeout long enough. 1ms is enough in about 75% of tests, but sometimes it fails to show up even with 100ms timeout. So apparently something is going on during that time, but I have no idea what. It would be really nice if I could log when it actually appears in the input field.
EDIT:
I solved the problem with the empty input field. I used element.innerHTML += "a lot of html"
elsewhere in my code and due to its destructive nature it wiped all the input fields before it pleted appending html. I replaced it with .insertAdjacentHTML
and it worked like a charm.
1 Answer
Reset to default 17You're looking in the wrong place.
The value
attribute represents the default value, which you aren't modifying.
The current value appears in the DOM value
property.
本文标签: javascriptWhy don39t browser developer tools display input field valuesStack Overflow
版权声明:本文标题:javascript - Why don't browser developer tools display input field values? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743620354a2511425.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论