如何使用另一个函数javascript中的变量

问题描述 投票:0回答:1

我是 Javascript 新手,每次遇到这个问题时,我都会自己做一些项目。

如果我有一个函数,里面有一个变量

const newP = document.createElement('p')
,假设我无法将其设为全局变量,并且我想在另一个函数中使用该
newP

我怎样才能做到这一点?

使用

return newP
它给我一个错误。

function addText() {
  if (input.innerHTML !== '') {
    const newP = document.createElement('p');
    newP.innerHTML = input.innerHTML;
    outputDiv.appendChild(newP);
    
    // How can I use the same newP in another function?
  }
} 
javascript html variables return
1个回答
0
投票

没有全局变量就不行

© www.soinside.com 2019 - 2024. All rights reserved.