a标签的写法
cols: [[{field: \'UID\', title: \'UID\', event: \'Switch\', width: 120,templet: function (d) {return \'<a href = \"WebForm2.aspx?data=\'+d.UID+\'\" target = \"_blank\">\'+ d.UID+\'</a >\' //点击表格中的a标签会跳转到一个新的页面并将附带表格中的参数}}
js中的写法
var url = window.location.href;//得到网页链接if (url.length > 37) {var uid = window.location.href.split(\"?\")[1].split(\"=\")[1];//得到带过来的参数} else {var uid = \"\";}