摘要: JavaScript获取url 参数 function GetUrlParms() { var args = new Object(); var query = location.search.substring(1); //获取查询串 var pairs = query.split("&"); //在逗号处断开 for (var i = 0; i < pairs.length; i++) { var pos = pairs[i].indexOf('=')... 阅读全文
posted @ 2012-05-20 10:47 木语 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 页面1<!--WebForm1.aspx--><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title></title> <script type="text/javascript"> var subWindows function OpenWin() { subWindows = window.open("WebForm2.a 阅读全文
posted @ 2012-05-20 10:45 木语 阅读(3979) 评论(0) 推荐(0) 编辑
摘要: 在弹出板中,加载另一页面,在另一页面中调用父页面的方法.页面一<!--WebForm1--><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title></title> <script type="text/javascript"> function OnPopUp(s, e) { s.SetContentUrl("WebForm 阅读全文
posted @ 2012-05-20 10:40 木语 阅读(337) 评论(0) 推荐(0) 编辑