Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM ใส่ URL แบบฟอร์มคุณสมบัติ


คุณสมบัติแบบฟอร์ม HTML DOM Input URL ส่งกลับการอ้างอิงของแบบฟอร์มล้อมรอบสำหรับป้อน URL

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

คืนค่าการอ้างอิงไปยังวัตถุแบบฟอร์ม

inputURLObject.form

ตัวอย่าง

ให้เราดูตัวอย่างของ รูปแบบการป้อน URL ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Input URL form</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 id="Larry Page">
<fieldset>
<legend>URL-form</legend>
<label for="URLSelect">URL :
<input type="URL" id="URLSelect" size="25">
</label>
<input type="button" onclick="getform()" value="Get Co-founder">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputURL = document.getElementById("URLSelect");
   function getform() {
      if(inputURL.value !== '')
         divDisplay.textContent = 'Co-founder: '+inputURL.form.id;
      else
         divDisplay.textContent = 'Please enter valid URL';
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ก่อนคลิก 'รับผู้ร่วมก่อตั้ง' ปุ่ม −

HTML DOM ใส่ URL แบบฟอร์มคุณสมบัติ

หลังจากตรวจสอบ ‘รับผู้ร่วมก่อตั้ง’ ปุ่ม −

HTML DOM ใส่ URL แบบฟอร์มคุณสมบัติ