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

คุณสมบัติประเภท HTML DOM Ol


คุณสมบัติประเภท HTML DOM Ol ตั้งค่า/ส่งคืนค่าของแอตทริบิวต์ประเภทที่สอดคล้องกับประเภทของเครื่องหมายที่ใช้ในรายการที่เรียงลำดับ

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

ส่งคืนคุณสมบัติประเภท

olObject.type

การตั้งค่าประเภท เป็นตัวละคร

olObject.type = ‘1|a|A|i|I’

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

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Ol type</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
   ol{
      width: 30%;
      margin: 0 auto;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-Ol-type</legend>
         <h3>Students</h3>
         <ol id="orderList" type='2'>
            <li>Adam</li>
            <li>Alex</li>
            <li>Bina</li>
            <li>Eden</li>
            <li>Rajesh</li>
            <li>Zampa</li>
         </ol>
         <input type="button" onclick="changeMarker()" value="Change Marker">
         <div id="divDisplay"></div>
      </fieldset>
   </form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var studentList = document.getElementById("orderList");
   function changeMarker() {
      studentList.type = 'I';
      divDisplay.textContent = 'Marker Changed';
   }
</script>
</body>
</html>

ผลลัพธ์

ก่อนคลิก 'เปลี่ยนเครื่องหมาย' ปุ่ม −

คุณสมบัติประเภท HTML DOM Ol

หลังจากคลิก 'เปลี่ยนเครื่องหมาย' ปุ่ม −

คุณสมบัติประเภท HTML DOM Ol