作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这种情况下,我有一个标签间交易:
表格
。表
上,有行
。这些行
的第二列是引用编号
。save
按钮后,该选项卡将关闭(好吧,这很容易做到)但这里的问题是,它将使用有关调用的新详细信息更新行选项卡
我在调用 选项卡
上已经有一个 update_row_details(personel_id)
函数。那么我将如何在新的选项卡
上调用该函数
?我感觉到它是这样的:
我的main.html
<table>
<thead>
<tr>
<th></th>
<th>Reference #</th>
.
.
.
</tr>
</thead>
<tbody>
<tr data-personel-id="081795">
<th>1.</th>
<td><a target="_blank" href="../query?id=081795">Gideon Apollo F. Bardelas</a></td>
.
.
.
</tr>
<tr data-personel-id="091296">
<th>2.</th>
<td><a target="_blank" href="../query?id=091296">Karina Kal-la Athena F. Bardelas</a></td>
.
.
.
</tr>
.
.
.
</tbody>
</table>
关于callertab.js
update_row_details(personel_id) {
var row = $("tr[data-personel-id=" + row_index + "]");
row.children()[1].text("blah, blah, blah");
.
.
.
row.children()[nth].text("blah, blah, blah");
}
关于newtab.js
$("form#details").submit(function() {
// Some ajax-saving
// Insert your inter-tab function calling here, something like this:
//
// tab[1].update_row_details($("#personel_id").val());
//
// Then close this tab.
return false;
})
最佳答案
我不确定你是否可以访问正在调用的调用者页面
<a target="_blank" ...
尝试使用 window.open
方法,然后在子窗口中使用 window.opener更新那里的状态。例如:
<a onclick="window.open('blablapage');event.preventDefault();" ...
主页上的JS:
function callMeFromChild(param1,param2){
console.log(arguments)
}
子页面上的JS:
function closeWindow(){
// send params
window.opener.callMeFromChild(123,"string")
// close the window
...
}
关于javascript - 浏览器间标签交易,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30659919/
根据 Android docs ,activity生命周期如下: onCreate() onStart() onResume() onPause() onStop() onDestroy() 问题是,
我有一门类(class)有很多专栏,但这个问题只需要其中三个: ---------------------------------------- | start_date | start_time
给定在同一个 Tomcat 6 上运行的两个 Web 应用程序。如果您从一个应用程序到另一个应用程序进行 http 调用,Tomcat 是否会“短路”此调用,或者它会在调用之前一直在 interweb
我是一名优秀的程序员,十分优秀!