为什么"showPass"函数返回 null?



我正在尝试编写一个函数,但遇到了一些错误。我的"showPass";函数返回空

<input id="userid" type="password" value="12345">
<button id="showPassButton" onclick="showPass(userid, showPassButton)">Show</button>

<script>
function showPass(passId, btnId) {  
const pass = document.getElementById('passId');
console.log(pass);
const btn = document.getElementById('btnId');
console.log(btn);
}
</script>
您必须使用onclick="showPass('userid', 'showPassButton')">而不是onclick="showPass(userid, showPassButton)">,因为getElementById需要一个字符串。请参考以下片段。

function showPass(passId, btnId) {  
const pass = document.getElementById(passId);
console.log(pass);
const btn = document.getElementById(btnId);
console.log(btn);
}
<input id="userid" type="password" value="12345">
<button id="showPassButton" onclick="showPass('userid', 'showPassButton')">Show</button>

相关内容

  • 没有找到相关文章

最新更新