vue中document.getElementById 怎么写都为空

vue中document.getElementById 怎么写都为空

  • 首先核查基础的id是否写的完全一致
  • 方法如果是位于**created()中元素挂载不稳定,会出现为空的情况(修改到mounted()**方法中即可)
  • script标签上加defer=true的属性 此方法我尝试了并不好使
  • 确保你的代码在页面加载完毕后再执行,若JavaScript代码在页面加载完成之前执行,那么getElementById()方法将无法找到对应的元素。

你可能感兴趣的:(vue.js,javascript)