通过js获得页面跳转参数 页面通过window.location.href或通过window.parent.location.href进行页面跳转,在新的页面如何获得相应的参数呢? window.location.href方式 其中去除"#"号是因为url参数中还添加了#的参数. function GetRequest(name) { var url = window.location.search; //获取url中"?"符后的字串 // var theReque
有时候使用js进行页面跳转,想使用 a 标签中 target="_blank" 形式,跳转打开一个新的页面. 可以使用以下脚本,创建一个 a标签,然后模拟点击操作. 代码如下: function searchBaidu() { var url = "http://www.baidu.com“; var el = document.createElement("a"); document.body.appendChild(el); el.href = u
1.struts2 action如何向JSP的JS函数传值 action中定义变量public class TestAction extends ActionSupport implements ServletRequestAware { private String state = "test";} JSP的JS函数中引用变量<script type=text/javascript> function getStatus() { var t =