在java中怎么样实现点击一个按钮同时刷新2个不同的界面?
2013-09-08
展开全部
这个用Html+JavaScript就能实现, 一共三个HTML文件.放到一个目录下面
test.html是主文件
//====
//文件 1.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
页面1<br>
可以再输入框中输入内容,测试页面是否刷新
<input type="text">
</body>
</html>
//====
//文件 2.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
页面2<br>
可以再输入框中输入内容,测试页面是否刷新
<input type="text">
</body>
</html>
//====
//文件 test.html
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script>
var page1 = null;
var page2 = null;
function open1(){
page1 = window.open("1.html")
}
function open2(){
page2 = window.open("2.html")
}
function fresh(){
var re = "";
if(page1 != null){
page1.location.reload();
re+=" 页面1 "
}
if(page2 != null){
page2.location.reload();
re+=" 页面2 "
}
alert("操作成功! 刷新了页面:" + re);
}
</script>
</head>
<body>
<input type="button" value="刷新打开的页面" onclick="fresh();" /><br>
<input type="button" value="打开页面1" onclick="open1();" /><br>
<input type="button" value="打开页面2" onclick="open2();" /><br>
</body>
</html>
test.html是主文件
//====
//文件 1.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
页面1<br>
可以再输入框中输入内容,测试页面是否刷新
<input type="text">
</body>
</html>
//====
//文件 2.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
页面2<br>
可以再输入框中输入内容,测试页面是否刷新
<input type="text">
</body>
</html>
//====
//文件 test.html
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script>
var page1 = null;
var page2 = null;
function open1(){
page1 = window.open("1.html")
}
function open2(){
page2 = window.open("2.html")
}
function fresh(){
var re = "";
if(page1 != null){
page1.location.reload();
re+=" 页面1 "
}
if(page2 != null){
page2.location.reload();
re+=" 页面2 "
}
alert("操作成功! 刷新了页面:" + re);
}
</script>
</head>
<body>
<input type="button" value="刷新打开的页面" onclick="fresh();" /><br>
<input type="button" value="打开页面1" onclick="open1();" /><br>
<input type="button" value="打开页面2" onclick="open2();" /><br>
</body>
</html>
TableDI
2024-07-18 广告
2024-07-18 广告
当使用VLOOKUP函数在Excel中进行数据匹配时,如果一个数据需要匹配多行数据,通常不能直接使用标准的VLOOKUP。因为VLOOKUP是基于单个键值查找并返回单个结果的。要匹配多行数据,可以采用以下几种方法:1. **数组公式**:使...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询