HTML isTrusted 이벤트 속성은 이벤트가 신뢰할 수 있는지 여부에 해당하는 부울 값을 반환합니다.
참고 − 스크립트에 의해 호출되면 isTrusted는 false를 반환하고 사용자가 호출하면 isTrusted는 true를 반환합니다.
isTrusted 의 예를 살펴보겠습니다. 이벤트 속성 -
예시
<!DOCTYPE html> <html> <head> <title>HTML isTrusted</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>HTML-isTrusted-attribute</legend> <input type="email" id="emailSelect" placeholder="eg: [email protected]"> <input type="password" id="passWordSelect"> <input id="loginbtn" type="button" value="Login" onclick="login(event)"> <div id="divDisplay">Attempt to login will take place in 2 seconds</div> </fieldset> </form> <script> var emailSelect = document.getElementById("emailSelect"); var passWordSelect = document.getElementById("passWordSelect"); var loginbtn = document.getElementById("loginbtn"); var divDisplay = document.getElementById("divDisplay"); setTimeout(function() { emailSelect.value="[email protected]"; passWordSelect.value="hellopaula"; loginbtn.click(); }, 2000); function login(event) { if(event.isTrusted) divDisplay.textContent = 'Welcome '+emailSelect.value.split("@")[0]; else divDisplay.textContent = 'Unauthorized attempt to login from a script'; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
1) 행동이 일어나기 전 -
2) '로그인' 후 버튼이 스크립트를 통해 클릭되었습니다 -
3) '로그인' 후 사용자가 버튼을 클릭했습니다 -