假设我有一个 $_SESSION['password'] 和一个 javascript 函数。
这是javascript函数:
<script>
function check() {
var password = '<?php echo $_SESSION; ?>';
alert(password);
if (document.FormName.password.value != password)
alert("password does not match");
}
</script>
<html>
//form here
</html>
怎么会弹出alert的时候,什么都不显示?发生了什么?我传递变量是否完全错误?