获取点击行数据

//1.拼接Table
<table id="RolemenuTable" class="table table-hover table-p8" data-paging="true" data-filtering="true" data-sorting="true">table>
//2.JQurey代码
 <script type="text/javascript">
 $(function(){
      //点击行获取数据
      $("#RolemenuTable tbody tr").click(function(){
           code = $(this).find("td").eq(0).html(); //eq:table的列
           //post传到SyRole.aspx后台
           $.post('../Sys/SyRole.aspx', {code:code }, function (data){
        }, 'json')
   })
})
 script>
 // window.location.reload();刷新当前页面(无关代码)

你可能感兴趣的:(学习路程)