javascript - Why don't browser developer tools display input field values? - Stack Overflow

When I inspect an input field that has a value, the value appears empty in the debugger like this:I was

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.

Share Improve this question edited Aug 9, 2018 at 2:18 Arthur Tarasov asked Aug 8, 2018 at 12:32 Arthur TarasovArthur Tarasov 3,8119 gold badges50 silver badges60 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 17

You'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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743620354a4479673.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信