ล่าสุดการพัฒนาเว็บบทเรียน
×

JavaScript การอ้างอิง

ภาพรวม

JavaScript

JS เชือก JS จำนวน JS ผู้ประกอบการ JS งบ JS คณิตศาสตร์ JS วันที่ JS แถว JS บูลีน JS นิพจน์ทั่วไป JS สถานการณ์โดยรวม JS การแปลง

เบราว์เซอร์ BOM

Window Navigator Screen History Location

HTML DOM

DOM เอกสาร DOM องค์ประกอบ DOM แอตทริบิวต์ DOM เหตุการณ์ DOM รูปแบบ

HTML วัตถุ

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <keygen> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <td> <th> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>

วัตถุอื่น ๆ

CSSStyleDeclaration


 

TableRow การเก็บเซลล์

<TableRow วัตถุ

ตัวอย่าง

แสดงจำนวนของเซลล์ในแถวแรก:

var x = document.getElementById("myTable").rows[0].cells.length;

ผลของ x จะเป็น:

2
ลองตัวเอง»

เพิ่มเติม "Try it Yourself" ตัวอย่างด้านล่าง


ความหมายและการใช้งาน

คอลเลกชันเซลล์ผลตอบแทนที่คอลเลกชันของทั้งหมด <td> หรือ <th> องค์ประกอบในแถวของตาราง

Note: องค์ประกอบในคอลเลกชันจะถูกเรียงลำดับตามที่ปรากฏในรหัสที่มา


สนับสนุนเบราว์เซอร์

ชุด
cells ใช่ ใช่ ใช่ ใช่ ใช่

วากยสัมพันธ์

tableObject .cells

คุณสมบัติ

คุณสมบัติ ลักษณะ
length แสดงจำนวนของ <td> และ / หรือ <th> องค์ประกอบในคอลเลกชัน

หมายเหตุ: คุณสมบัตินี้ถูกอ่านอย่างเดียว

วิธีการ

วิธี ลักษณะ
[ index ] ส่งคืน <td> และ / หรือ <th> องค์ประกอบจากคอลเลกชันที่มีดัชนีที่ระบุ (starts at 0)

หมายเหตุ: คืน null หากหมายเลขดัชนีอยู่นอกช่วง
item( index ) ส่งคืน <td> และ / หรือ <th> องค์ประกอบจากคอลเลกชันที่มีดัชนีที่ระบุ (starts at 0)

หมายเหตุ: คืน null หากหมายเลขดัชนีอยู่นอกช่วง
namedItem( id ) ส่งคืน <td> และ / หรือ <th> องค์ประกอบจากคอลเลกชันที่มี ID ที่ระบุ

หมายเหตุ: คืน null หากประชาชนไม่ได้อยู่

รายละเอียดทางเทคนิค

DOM เวอร์ชัน: ระดับแกนวัตถุ 2 เอกสาร
กลับค่า: วัตถุ HTMLCollection คิดเป็นทั้งหมด <td> และ / หรือ <th> องค์ประกอบใน <tr> องค์ประกอบ องค์ประกอบในการเก็บรวบรวมจะถูกเรียงลำดับตามที่ปรากฏในรหัสที่มา

ตัวอย่าง

ตัวอย่างอื่น ๆ

ตัวอย่าง

[ดัชนี]

แจ้งเตือน innerHTML ของเซลล์แรกในแถวแรกของตารางไปนี้:

alert(document.getElementById("myTable").rows[0].cells[0].innerHTML);
ลองตัวเอง»

ตัวอย่าง

item( index )

แจ้งเตือน innerHTML ของเซลล์แรกในแถวแรกของตารางไปนี้:

alert(document.getElementById("myTable").rows[0].cells.item(0).innerHTML);
ลองตัวเอง»

ตัวอย่าง

namedItem( id )

แจ้งเตือน innerHTML ของเซลล์ที่มี id = "myTd" ในแถวแรกของตาราง:

alert(document.getElementById("myTable").rows[0].cells.namedItem("myTd").innerHTML);
ลองตัวเอง»

ตัวอย่าง

เปลี่ยนเนื้อหาของเซลล์ตารางแรก:

var x = document.getElementById("myTable").rows[0].cells;
x[0].innerHTML = "NEW CONTENT";
ลองตัวเอง»

<TableRow วัตถุ