刷新frame

简介: 刷新frame
//刷新frame 通过和替换iframe的src来实现局部刷新
parent.document.getElementById("whole_Frame").src = '${ctx}/apAnalysis/analysisWhole?pageNo='+p;
//刷新父级frame11,
parent.frame11.location.reload()
document.frames("frameName").location.reload();
语句1. window.parent.frames[1].location.reload();
语句2. window.parent.frames.bottom.location.reload();
语句3. window.parent.frames["bottom"].location.reload();
语句4. window.parent.frames.item(1).location.reload();
语句5. window.parent.frames.item('bottom').location.reload();
语句6. window.parent.bottom.location.reload();
语句7. window.parent['bottom'].location.reload();
function clickButton(){
  var text = document.getElementById("name1").value;
  var frame = document.getElementById('frame1');
  frame.src="table.jsp?text="+text;
}
<iframe src="table.jsp" id="frame1" frameborder="0" marginheight="0" marginwidth="0" height="700" width="100%"></iframe>
$('iframe').attr('src',url);//加载


相关文章
|
1月前
列分Frame
列分Frame。
13 4
|
1月前
行分Frame
行分Frame。
30 3
|
1月前
Frame用于导航
Frame用于导航。
13 2
|
2月前
Frame
Frame。
30 1
|
6月前
|
Python
update_frame 图象刷新
update_frame 图象刷新
41 4
刷新屏幕Cell 的一些方法
刷新屏幕Cell 的一些方法
58 0
UE4 使用Animation Data Modifiers修改动画片段
UE4 使用Animation Data Modifiers修改动画片段
121 0
UE4 使用Animation Data Modifiers修改动画片段
av_seek_frame实战--跳转到文件指定时间后开始推流或写入新文件
av_seek_frame实战--跳转到文件指定时间后开始推流或写入新文件
138 0
av_seek_frame实战--跳转到文件指定时间后开始推流或写入新文件
|
算法
frame_size (1536) was not respected for a non-last frame
frame_size (1536) was not respected for a non-last frame
100 0
frame_size (1536) was not respected for a non-last frame
|
数据库
alv被display后随数据的变化随时刷新
创建一个report显示alv,在gui上提供一个按钮,更改数据点击按钮后的效果如下如上面2图所示,实时依据按钮的触发,刷新alv上的数据,将最新的数据内容显示出来。
2658 0