我是 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?
}
}
没有全局变量就不行