**I was trying to figure out a way to do the following**
var foo = document.body.innerHtml;
> then call foo = "testing"
>
> and the body's html would read "testing"
but so far all that happens is innerHtml is returning the value of innerHtml ... *which is expected*
is there any way to store innerHtml and maybe do something like
var hold = "innerHtml"
document.body[hold] = "foo"
以上就是storing the accessor to innerHtml as a var的详细内容,更多请关注web前端其它相关文章!