摘要: "window.location.href"、"location.href"是本页面跳转"parent.location.href"是上一层页面跳转"top.location.href"是最外层的页面跳转举例说明:如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href"、"location.href":D页面跳转"parent.location.href" 阅读全文
posted @ 2012-09-10 21:43 摩根船长 阅读(3298) 评论(0) 推荐(0) 编辑
摘要: 一、数组转字符串(将数组元素用某个字符连接成字符串)var a, b;a = new Array(0,1,2,3,4);b = a.join("-");二、字符串转数组(将字符串按某个字符切割成若干个字符串,并以数组形式返回)var s = "abc,abcd,aaa";ss = s.split(",");// 在每个逗号(,)处进行分解。 阅读全文
posted @ 2012-09-10 11:23 摩根船长 阅读(14890) 评论(0) 推荐(0) 编辑