在 components 中无法取得该元素,在 pages 中可以取得
全部的代码示例 :
https://codesandbox.io/s/craz...
简单的代码示例 :
<template>
<section>
<div id="app">
<h1>{{ message }}</h1>
<button :id="domId">get my id is {{ domId }}</button>
<pre>
{{ consol }}
</pre>
</div>
</section>
</template>
<script>
export default {
data() {
var domId = Date.now();
return {
message: "Welcome to Nuxt!",
consol: "",
domId: domId,
};
},
mounted() {
console.log(
`我想获得id值为${this.domId}的元素,但总是获得null,我应该如何做?` );
// 此处可以输出正常值
console.log(`this.domId`, this.domId);
// 这里输出 null
console.log(
`document.getElementById(${this.domId})`,
document.getElementById(this.domId)
);
},
};
</script>
试试 this.$nextTick , 例 :
或者