jQuery獲取點選td單元格的值
分享一段程式碼例項,它實現了獲取當前點選td單元格的值的功能。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(function () { $("#mytable td").click(function () { $("#antzone").text($(this).text()) }); }); </script> </head> <body> <div id="antzone"></div> <table id="mytable" width="708" cellpadding="5" cellspacing="1"> <tbody> <tr bgcolor="#DEE9F4" id="tr_1"> <td align="center">日</td> <td align="center">一</td> <td align="center">二</td> <td align="center">三</td> <td align="center">四</td> <td align="center">五</td> <td align="center">六</td> </tr> <tr bgcolor="#DEE9F4" id="tr_2"> <td align="center"></td> <td align="center"></td> <td align="center"></td> <td align="center">1</td> <td align="center">2</td> <td align="center">3</td> <td align="center">4</td> </tr> <tr bgcolor="#DEE9F4" id="tr_3"> <td align="center">5</td> <td align="center">6</td> <td align="center">7</td> <td align="center">8</td> <td align="center">9</td> <td align="center" bgcolor="red">10</td> <td align="center">11</td> </tr> <tr bgcolor="#DEE9F4" id="tr_4"> <td align="center">12</td> <td align="center">13</td> <td align="center">14</td> <td align="center">15</td> <td align="center">16</td> <td align="center">17</td> <td align="center">18</td> </tr> </tbody> </table> </body> </html>
相關文章
- JavaScript 獲取表格指定td單元格JavaScript
- jquery實現的獲取指定行列td單元格內容jQuery
- JavaScript 獲取td單元格內容JavaScript
- C# 獲取Excel的指定單元格的值C#Excel
- js點選當前td單元格背景變色效果詳解JS
- js獲取點選單元格中的內容程式碼例項JS
- JavaScript 遍歷td單元格JavaScript
- jQuery實現的拖動調整表格td單元格的大小jQuery
- jQuery點選元素獲取此元素的id屬性值jQuery
- jQuery獲取被選中radio單選按鈕的值jQuery
- jQuery如何獲取選中單選按鈕radio的值jQuery
- js獲取table表格指定行列td單元格內容JS
- jQuery獲取選中的核取方塊或者單按鈕的值jQuery
- jquery如何獲取select下拉選單選中項的值和文字jQuery
- jquery實現的獲取選中select下拉選單的值和文字jQuery
- Excel獲取單元格批註Excel
- 如何用jquery獲取DIV中的TR和TDjQuery
- 動態建立table表格併為每一個td單元格註冊點選事件事件
- jQuery實現的獲取select下拉選單的text和value值jQuery
- jquery獲取選中checkbox核取方塊的值jQuery
- 獲取選中表單按鈕的值
- JQuery獲取form表單中所有值jQueryORM
- jQuery獲取選中的checkbox核取方塊的值jQuery
- jQuery獲取id屬性值具有點的元素jQuery
- td單元格合併程式碼例項
- jquery統計表格指定列的單元格值的和jQuery
- jQuery 利用萬用字元獲取多選框選中的值jQuery字元
- jquery獲取id屬性值帶有點的元素jQuery
- jQuery獲取表單值及幾個表單事件jQuery事件
- 表格單元格點選操作(彈窗)
- 使用jquery獲取被選中checkbox核取方塊的值jQuery
- jQuery獲取選中核取方塊的值程式碼例項jQuery
- jquery獲取select下拉選中option項的value值jQuery
- jquery 獲取select框選中的值示例一則jQuery
- id屬性值帶有點(.)jQuery如何獲取jQuery
- 獲取選中select下拉選單的value屬性值
- Listview獲取選中行的值View
- jQuery獲取url引數值jQuery