单元格处,建立一个超级链接,链接中传递id、state两个参数,js脚本那里根据state的不同跳转不同的页面即可。
if (state=='值1') {
url="预跳转的模板路径1&id="+id+"&state="+state;
}
else if (state=='值2') {
url="预跳转的模板路径2&id="+id+"&state="+state;
}
else {
url="预跳转的模板路径3&id="+id+"&state="+state;
}
window.open(url);//新窗口打开
window.location.href=url;//当前页面打开