A. Java中怎么在鼠标移入的时候变成手型
在指定的HTML元素,比如tr td div 等等加样式,style="cursor:hand" 比如列,就是<td style="cursor:hand">移动到我就变手型</td>
如果是SWING这种模拟界面, Button b= new Button("test1");b.addMouseListener(new ButtonHandler());class ButtonHandler extends MouseAdapter{
{
public void mouseClicked(MouseEvent e)
{
if(e.getActionCommand().equals("Eixt"))
{
System.exit(0);
}
}
}
class ClosingHander extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
这是局部代码,点了按钮就会关闭面板,只要对按钮增加了监听,内部就是自动给一个手的样式