JAVA 点击按钮后跳到另一个界面
3个回答
展开全部
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Fre {
static JFrame frame = new JFrame();
public static void main(String[] args) {
//窗体大小
frame.setSize(200,200);
//按钮
JButton button =new JButton("点击我");
//在窗体上添加按钮
frame.add(button);
//显示窗体
frame.setVisible(true);
//添加点击事件监听器(你可以使用任何其他监听,看你想在什么情况下创建新的窗口了)
button.addActionListener(new ActionListener(){
//单击按钮执行的方法
public void actionPerformed(ActionEvent e) {
closeThis();
//创建新的窗口
JFrame frame = new JFrame("新窗口");
//设置在屏幕的位置
frame.setLocation(100,50);
// 窗体大小
frame.setSize(200,200);
// 显示窗体
frame.setVisible(true);
}
});
}
public static void closeThis(){
frame.dispose();
}
}
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Fre {
static JFrame frame = new JFrame();
public static void main(String[] args) {
//窗体大小
frame.setSize(200,200);
//按钮
JButton button =new JButton("点击我");
//在窗体上添加按钮
frame.add(button);
//显示窗体
frame.setVisible(true);
//添加点击事件监听器(你可以使用任何其他监听,看你想在什么情况下创建新的窗口了)
button.addActionListener(new ActionListener(){
//单击按钮执行的方法
public void actionPerformed(ActionEvent e) {
closeThis();
//创建新的窗口
JFrame frame = new JFrame("新窗口");
//设置在屏幕的位置
frame.setLocation(100,50);
// 窗体大小
frame.setSize(200,200);
// 显示窗体
frame.setVisible(true);
}
});
}
public static void closeThis(){
frame.dispose();
}
}
展开全部
1、在jsp页面定义一个button按钮
2、给按钮一个onclick事件
3、定义onclick事件的处理函数
4、在处理函数中利用window.location.href跳转到指定的页面
示例:
<input type="button" id="mybutton" value="跳转测试" onclick="goPage();"/>
js:
function goPage(){
window.location.href="指定的url";
}
2、给按钮一个onclick事件
3、定义onclick事件的处理函数
4、在处理函数中利用window.location.href跳转到指定的页面
示例:
<input type="button" id="mybutton" value="跳转测试" onclick="goPage();"/>
js:
function goPage(){
window.location.href="指定的url";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一看就知道是程序初哥问的问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询