Как можно косвенно ссылаться на объект javascript?
Предположим:
<div id="foo" data-munchy="bar" data-crunchy="baz">FooBar</div>
<script>
document.getElementById("foo").onclick = function() {
tempVariable = 'munchy';
console.log(this.dataset.tempVariable);
}
</script>
Как я могу получить доступ к this.dataset.{someVariable}
? В этом случае this.dataset.tempVariable
Возможно ли использование только eval
или window
?