程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> click事件-獲取bootsrp table當前點擊行的內容

click事件-獲取bootsrp table當前點擊行的內容

編輯:編程綜合問答
獲取bootsrp table當前點擊行的內容
<div style="height:300px">
                <table id="passwordStrategyManage"
                         data-url="findStrategyAction.action" class="table table-striped" >
                    <thead>
                        <tr >
                            <th data-checkbox=true ></th>
                            <th data-field="strategyId" >編號</th>
                            <th data-field="name">策略</th>
                            <th data-field="passwordSize">密碼最小長度</th>
                            <th data-field="complicated">是否啟用復雜度</th>

                            <th data-field="resetDay">刷新周期</th>
                            <th data-field="state">是否啟用策略</th>
                        </tr>
                    </thead>
                </table>
        </div>

            表格內容從後台獲取 ,所有click事件只能綁定在table上,怎麼獲取點擊行的strategyId呢?

最佳回答:


$("#passwordStrategyManage tr").click(function(){
var html = $(this).html;
var text = $(this).text;
});
html是帶標簽的 text是去除了html標簽的

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved