在 if 语句中添加 HTML
Adding HTML in a if-statement
我希望 html 在密码正确时打开,我已经尝试过 .js、document.write、.html、href、div、document.getElementById 当它在 if 条件内时没有任何工作,但我需要它在那里所以它在条件正确时打开。
<script>
function 123()
{
var pass=document.getElementById("pass").value;
if(pass=="password")
{
alert("Logged In");
here is where the HTML code should go;
}
}
</script>
您可以在本页创建html元素并给这个元素显示none当密码正确时更改显示示例:
if(pass=="password") {
alert("Logged In");
document.getElementById("page").style.display="block";}
我希望 html 在密码正确时打开,我已经尝试过 .js、document.write、.html、href、div、document.getElementById 当它在 if 条件内时没有任何工作,但我需要它在那里所以它在条件正确时打开。
<script>
function 123()
{
var pass=document.getElementById("pass").value;
if(pass=="password")
{
alert("Logged In");
here is where the HTML code should go;
}
}
</script>
您可以在本页创建html元素并给这个元素显示none当密码正确时更改显示示例:
if(pass=="password") {
alert("Logged In");
document.getElementById("page").style.display="block";}