if后面的括号里可以直接写变量或者写true吗 求大神指点 若是写这两者 有什么结果
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type"
content="text.html;charset=utf-8">
<title>复习一下confirm属性</title>
<script>
var addf=confirm("您好 想要进入该网站吗");
if(true){
document.write("欢迎访问本网站 很高兴为你服务");
}
else
{
alert("谢谢 忍痛拒绝");
}
</script>