`
feifeiyaqi3
  • 浏览: 1307 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

self.parent.desktop.document.location.href

阅读更多
<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和localtion.href有什么不同

    - 通过比较`top.location.href`与`self.location.href`来判断当前页面是否为顶层页面。如果两者相等,则当前页面位于顶层;如果不相等,则意味着当前页面被嵌套在一个或多个框架中。 ```javascript if (top....

    详解js location.href和window.open的几种用法和区别.docx

    * self.location.href:当前页面打开 URL 页面 * window.location.href:当前页面打开 URL 页面 * this.location.href:当前页面打开 URL 页面 * location.href:当前页面打开 URL 页面 * parent.location.href:在...

    jsp 刷新父页面

    self.window.opener.locaction.reload(); 刷新一open()方法打开的窗口 window.opener.location.href = window.opener.location.href 刷新以winodw.showModelDialog()方法打开的窗口 window.parent....

    js实现网页防止被iframe框架嵌套及几种location.href的区别

    首先我们了解一下:[removed].href、location.href、self.location.href、parent.location.href、top.location.href他们的区别与联系,简单的说:几种location.href的区别 js实现网页被iframe框架功能 “[removed]....

    CAJViewer 7.2.self.exe PC

    CAJViewer 7.2.self.exe 用于 PC 上, 修正或增加了以下功能: 1.增加工具书版本,添加了屏幕取词功能。 2.更新CAJAX插件到最新版。 3.增加CAJAX插件对Firefox、Chrome、Safari等浏览器的支持。 4.修正了安装时...

    location.href用法总结(最主要的)

    self.location.href=”/url” 当前页面打开URL页面 location.href=”/url” 当前页面打开URL页面 windows.location.href=”/url” 当前页面打开URL页面,前面三个用法相同。 this.location.href=”/url” 当前页面...

    10个至强JavaScript代码

    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阅览器

    CAJViewer 7.0.2.self.exe阅览器,下载供大家使用。

    [removed].href的用法(动态输出跳转)

    self.location.href=”/url” 当前页面打开URL页面 location.href=”/url” 当前页面打开URL页面 windows.location.href=”/url” 当前页面打开URL页面,前面三个用法相同。 this.location.href=”/url” 当前页面...

    用 Python 从头实现一个神经网络(附代码)

    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_...

    并查集主要操作及主要操作.docx

    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.rar

    CAJViewer 7.0.2.self.part1.rarCAJViewer 7.0.2.self.part1.rar

    Self.less.2015.1080p 字幕

    Self.less.2015.1080p 字幕

    PyQt5 控件字体样式等设置的实现

    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...

    RRT(Rapidly-Exploring Random Trees)算法详解及python实现 .pdf

    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) &gt; 90: return self.goal ...

    ydcd___tools

    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....

Global site tag (gtag.js) - Google Analytics