1.在绑定事件的时候传入实参
2.定义事件函数执行跳转方法
Report.toReportDetails = function(id){
// console.log(id)
window.location.href = ;./ReportDetails.html?activeid=;; id;
}
3. 在报表详情页面接收传过来的参数
var activeidUrl = window.location.href;
var activeidData = activeidUrl.split(;=;); //截取 url中的“=”,获得“=”后面的参数
var active_id = decodeURI(activeidData[1]); //decodeURI解码
依照上面三个步骤你就看实现html与html页面之间进行传值了