Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 입력 값 속성

<시간/>

HTML 입력 값 속성은 값 속성의 값을 설정/반환하는 데 사용됩니다.

입력값의 예를 살펴보겠습니다. 속성 -

예시

<!DOCTYPE html>
<html>
<head>
<title>Input URL value</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>URL-value</legend>
<label for="URLSelect">URL Id:
<input type="url" id="URLSelect">
<input type="button" onclick="getUserURL('google')" value="Google">
<input type="button" onclick="getUserURL('bing')" value="Bing"><br>
<input type="button" onclick="redirection()" value="Go">
</label>
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputURL = document.getElementById("URLSelect");
   function getUserURL(userName) {
      if(userName === 'google')
         inputURL.value = 'https://www.google.com';
      else
         inputURL.value = 'https://www.bing.com';
   }
   function redirection() {
      if(inputURL.value !== '')
         divDisplay.textContent = 'Redirecting to '+inputURL.value;
      else
         divDisplay.textContent = 'Enter URL';
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

1) '이동 클릭 ' 빈 URL 필드가 있는 버튼 -

HTML 입력 값 속성

2) ' 클릭 후 ' 버튼 -

HTML 입력 값 속성

3) '이동 클릭 후 ' 버튼이 설정된 URL 필드 -

HTML 입력 값 속성