<span onclick="self.parent.desktop.document.location.href = '${ctx}/user.do'">
里面可以是<table>或其他
</span>
这样就能将本层的链接转到 名为“desktop” 层上。
如果将"self.parent.desktop"改成"self.top",则直接回到顶层,效果同
<a href="${ctx}/user.do" target="_top">
将“top”改成“blank”就是在新页面打开,效果同
<a href="${ctx}/user.do" target="_blank">
blank就是空白.
_parent是指如果网页中含有框架,那么_parent就是指包含自己的父框架.
_self是自己.
_top是指框架中最顶层的窗口
分享到:
相关推荐
- 通过比较`top.location.href`与`self.location.href`来判断当前页面是否为顶层页面。如果两者相等,则当前页面位于顶层;如果不相等,则意味着当前页面被嵌套在一个或多个框架中。 ```javascript if (top....
* self.location.href:当前页面打开 URL 页面 * window.location.href:当前页面打开 URL 页面 * this.location.href:当前页面打开 URL 页面 * location.href:当前页面打开 URL 页面 * parent.location.href:在...
self.window.opener.locaction.reload(); 刷新一open()方法打开的窗口 window.opener.location.href = window.opener.location.href 刷新以winodw.showModelDialog()方法打开的窗口 window.parent....
首先我们了解一下:[removed].href、location.href、self.location.href、parent.location.href、top.location.href他们的区别与联系,简单的说:几种location.href的区别 js实现网页被iframe框架功能 “[removed]....
CAJViewer 7.2.self.exe 用于 PC 上, 修正或增加了以下功能: 1.增加工具书版本,添加了屏幕取词功能。 2.更新CAJAX插件到最新版。 3.增加CAJAX插件对Firefox、Chrome、Safari等浏览器的支持。 4.修正了安装时...
self.location.href=”/url” 当前页面打开URL页面 location.href=”/url” 当前页面打开URL页面 windows.location.href=”/url” 当前页面打开URL页面,前面三个用法相同。 this.location.href=”/url” 当前页面...
self.view = Math.round(((e.screenX - scl) ) / (self.ws - self.alw - self.arw - self.bw) * self.NF); if (self.view != self.back) self.calc(); return false; } /* ---- release scrollbar...
CAJViewer 7.0.2.self.exe阅览器,下载供大家使用。
self.location.href=”/url” 当前页面打开URL页面 location.href=”/url” 当前页面打开URL页面 windows.location.href=”/url” 当前页面打开URL页面,前面三个用法相同。 this.location.href=”/url” 当前页面...
hidden_error = np.dot(output_error, self.weights_hidden_output[1:]) * self.hidden_outputs * (1 - self.hidden_outputs) self.weights_hidden_output += learning_rate * np.dot(output_error, self.hidden_...
self.parent[x] = self.find(self.parent[x]) # 路径压缩 return self.parent[x] def union(self, x, y): root_x = self.find(x) root_y = self.find(y) if root_x != root_y: # 按秩合并 if self.rank...
CAJViewer 7.0.2.self.part1.rarCAJViewer 7.0.2.self.part1.rar
Self.less.2015.1080p 字幕
self.headLabel.setAlignment(Qt.AlignCenter) ``` - **设置字体大小、颜色、粗体等属性**: ```python self.headLabel.setStyleSheet("color:rgb(10,10,10,255);font-size:25px;font-weight:bold;font-family...
self.parent[item] = self.find(self.parent[item]) return self.parent[item] def union(self, item1, item2): root1 = self.find(item1) root2 = self.find(item2) if root1 != root2: if self.rank[root1...
lastIndex = self.GetNearestListIndex(self.tree, self.goal) path = self.find_path(self.tree[lastIndex]) return path def get_random_point(self): if random.randint(0, 100) > 90: return self.goal ...
self.connect(self.cal,QtCore.SIGNAL("selectionChanged()"),self.showDate) self.label = QtGui.QLabel(self) date = self.cal.selectedDate() self.label.setText(str(date.toPyDate())) vbox = QtGui....