本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- sichunli_030
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
- zhangjijun
最新文章列表
判断页面是否有父窗口,判断页面是否有父页面
判断页面是否有父窗口,判断页面是否有父页面
================================
©Copyright 蕃薯耀 2020-07-31
http://fanshuyao.iteye.com/
if(window.location != parent.location){//判断是否有父窗口,当不相等时,表示有父窗口
console.log(& ...
Jsp页面跳转和js控制页面跳转的几种方法
Jsp 页面跳转的几种方法
1. RequestDispatcher.forward()
在服务器端起作用,当使用forward()时,Servlet engine传递HTTP请求从当前的Servlet或者是JSP到另外的一个Servlet、JSP 或普通HTML文件,也即你的form提交至a.jsp,在a.jsp用到了forward()重定向至b.jsp,此时form提交的所有信息在 b. ...
iframe子页面内刷新同页面中另一个iframe
框架页面如下:
<div id="aa" style="float: left; height: 500px; border-right-style: solid; border-right-color: #CCCCFF; border-right-width: 2px;">
<IFRAME id="tree&quo ...
javascript 父窗口与子窗口的互相调用(window.open,window.opener)
主要实现父子关系的页面
window.opener 是window.open 打开的子页面调用父页面对象
a.html
<html>
<head>
<title>主页面</title>
<script type="text/javascript">
/** 为测试IFrame子 ...