一、普通HTML页面代码
function cjkEncode(text) {
if (text == null) {
return “”;
}
var newText = “”;
for (var i = 0; i
var code = text.charCodeAt (i);
if (code >= 128 || code == 91 || code == 93) { //91 is “[“, 93 is “]”.
newText += “[” + code.toString(16) + “]”;
} else {
newText += text.charAt(i);
}
}
return newText;
}
function op(){
window.location=cjkEncode(‘http://localhost:8075/WebReport/ReportServereportlet=/培训/demo3.cpt&part=华东’);
}
切换页面
二、cpt中页面设置
ZKLIIUCQ@YMNU7S{5DNIIUG.png (上传于2017-02-28 12:02:15)

相关资源:蓦然记忆助手2.0触屏加强版-管理软件工具类资源-CSDN文库
声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!