如何使用HTML輸入來檢查JavaScript對象是否存在?如果我在表單中輸入person
,它應該會給我一個警報,說它存在並重定向頁面。如果我鍵入不同的東西,它應該得到一個警告,說它不存在。如何使用輸入檢查JS對象是否存在
<!DOCTYPE html>
<html>
<input id="auth">
<button type="button" onclick="authorize()">Submit</button>
<script>
function authorize(){
var auth;
auth = document.getElementById("auth");
auth = window[auth];
\t if (typeof maybeObject !== auth){
\t \t alert("it works");
\t }
\t else if (typeof maybeObject === auth){
\t \t alert("it doesnt work")
\t }
var person = {
firstName : "Billy",
lastName : "Bob",
age : 20,
eyeColor : "purple"
};
}
</script>
</html>
什麼是'maybeObject'? –