打赏
摘要: window.open("index.aspx",'top'); 只是表示打开这个页面,并不是打开并刷新index.aspx window.location.href="index.aspx"; 表示重新定向到新页面,同时刷新打开的这个页面; eg: <tr><td style="width:96% 阅读全文
posted @ 2017-04-21 10:38 刘奇云 阅读(50876) 评论(0) 推荐(1)
摘要: 1, 最基本的弹出窗口代码 window.open('page.html');2, 经过设置后的弹出窗口 window.open('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar= 阅读全文
posted @ 2017-04-21 10:29 刘奇云 阅读(2448) 评论(0) 推荐(0)