function openWindow(){
var opener = confirm("是否打开窗口");
if(opener == true){
open(['http://www.baidu.com'],['_blank'],['width=400,height=500,menubar=no,toolbar=no']);
}else{
docuemnt.write("用户已经取消");
}
}
var opener = confirm("是否打开窗口");
if(opener == true){
open(['http://www.baidu.com'],['_blank'],['width=400,height=500,menubar=no,toolbar=no']);
}else{
docuemnt.write("用户已经取消");
}
}
function try(){
var message=confirm("你有JB吗?");
if (message==false){
alert("你是人妖");
}
else{
alert("你是变态");
}
var message=confirm("你有JB吗?");
if (message==false){
alert("你是人妖");
}
else{
alert("你是变态");
}
2016-03-01
function add(){
var p1=document.getElmentById("p1");
p1.className="one"
}
function modify(){
var p2=document.getElementById("p2");
p2.className="two";
}
var p1=document.getElmentById("p1");
p1.className="one"
}
function modify(){
var p2=document.getElementById("p2");
p2.className="two";
}
2016-03-01
<script type="text/javascript">
var mystr= "hello";
var mychar= "我是";
document.write(mystr + "<br>");
document.write(mystr + mychar +"粉丝");
</script>
var mystr= "hello";
var mychar= "我是";
document.write(mystr + "<br>");
document.write(mystr + mychar +"粉丝");
</script>
2016-03-01
<button onclick="myFunction()">点击这里</button>
2016-02-29
p1.className="one";
p2.className="two";
p2.className="two";
2016-02-29