<script src="Script/jquery-1.4.min.js" type="text/javascript"></script>
      
   <script type="text/javascript">

       $(document).ready(function() {
           $("tr").click(function(event) {
               var row = jQuery(this)
               var firstParam = row.children("td:eq(0)").text();
               var secondParam = row.children("td:eq(1)").text();                
               var navUrl = "CustomerDetails.aspx?c + secondParam;
               top.location = navUrl;

           });
       });
   </script>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-11
  • 2022-01-11
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案