2个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
#button{ border:silver 1px solid;
border-collapse:collapse;
width:500px;
height:300px;
background-color:red;
}//第一种方案
#first{
border:#0099FF 1px solid;
width:500px;
border-collapse:collapse;
width:500px;
height:300px;
background-color:blue;
}//第二种方案
</style>
<script type="text/javascript" >
function fun1(){
var a=document.getElementById("first");//获得它的id,也可以用class
a.id="button"//下面可以用a.classname改变class的名字,从而改变要的方案
}
</script>
<body>
<div onclick="fun1()" id="first" ></div>//onclick 触发函数,然后产生效果
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
#button{ border:silver 1px solid;
border-collapse:collapse;
width:500px;
height:300px;
background-color:red;
}//第一种方案
#first{
border:#0099FF 1px solid;
width:500px;
border-collapse:collapse;
width:500px;
height:300px;
background-color:blue;
}//第二种方案
</style>
<script type="text/javascript" >
function fun1(){
var a=document.getElementById("first");//获得它的id,也可以用class
a.id="button"//下面可以用a.classname改变class的名字,从而改变要的方案
}
</script>
<body>
<div onclick="fun1()" id="first" ></div>//onclick 触发函数,然后产生效果
</body>
</html>
追问
这个不是编写网页的吗?能用在java写软件的时候嘛?在swing界面上?
追答
你是要在应用程序上吗?那不可以。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询