【2017-06-29】在登录页面自动返回上次请求页面、Js获取table中的行数与列数
2021-07-09 18:04
标签:get cell alert ble response doc rect direct style 一、在登录页面自动返回上次请求页面 Request.UrlReferrer 【2017-06-29】在登录页面自动返回上次请求页面、Js获取table中的行数与列数 标签:get cell alert ble response doc rect direct style 原文地址:http://www.cnblogs.com/qq609113043/p/7092629.html
比如
if (Request.UrlReferrer != null) {
//如果能获取来路地址
Response.Redirect(Request.UrlReferrer.ToString());
} else {
//没有来路地址
Response.Redirect("index.aspx");
二、Js获取table中的行数与列数
var table =document.getElementById("tab1");
var rows = table.rows.length;
alert(‘行数‘+rows);
var colums = table.rows[0].cells.length;
alert(‘列数‘+colums);
获取行索引
tr1.rowIndex tr1是行对象
文章标题:【2017-06-29】在登录页面自动返回上次请求页面、Js获取table中的行数与列数
文章链接:http://soscw.com/index.php/essay/102884.html