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

HTML DOM Meter คุณสมบัติสูง


คุณสมบัติสูง HTML DOM Meter ส่งกลับ/ตั้งค่าตัวเลขที่สอดคล้องกับแอตทริบิวต์สูงของ องค์ประกอบ. ใช้แอตทริบิวต์นี้กับแอตทริบิวต์ต่ำ ต่ำสุด และสูงสุดเพื่อผลลัพธ์ที่ดีขึ้น

ไวยากรณ์

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

  • คืนค่าของ สูง ทรัพย์สิน
meterElementObject.high
  • มูลค่าของ สูง ชุดคุณสมบัติ
meterElementObject.high = number

ตัวอย่าง

มาดูตัวอย่าง สูงเมตร ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Meter high</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>Meter-high</legend>
<label for="paulaLifeSource">Paula's Health Risk: </label>
<meter id="paulaLifeSource" max="100" min="0" high="80" low="70" value="85"></meter>
<input type="button" onclick="lifeSource()" value="Medi Kit">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   divDisplay.textContent = 'Life Source at '+paulaLifeSource.value;
   function lifeSource(effect){
      var paulaLifeSource = document.getElementById("paulaLifeSource");
      var Immunity = paulaLifeSource.high;
      paulaLifeSource.high = 90;
      divDisplay.textContent = 'Immunity increased to '+paulaLifeSource.high+' from '+Immunity;
   }
</script>
</body>
</html>

ผลลัพธ์

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

ก่อนคลิก 'Medi Kit' ปุ่ม −

HTML DOM Meter คุณสมบัติสูง

หลังจากคลิก ‘Medi Kit’ ปุ่ม −

HTML DOM Meter คุณสมบัติสูง