//定義"取消設置"的函數
function rec(){
var message = confirm("您確定取消所有設置?");
if(message == true){
var myobj = document.getElementById("txt");
myobj.removeAttribute('style');
}
}
function rec(){
var message = confirm("您確定取消所有設置?");
if(message == true){
var myobj = document.getElementById("txt");
myobj.removeAttribute('style');
}
}
//定義"顯示內容"的函數
function changeDisplayBlock(){
var mystyle = document.getElementById("txt");
mystyle.style.display = "block";
}
function changeDisplayBlock(){
var mystyle = document.getElementById("txt");
mystyle.style.display = "block";
}
//定義"隱藏內容"的函數
function changeDisplayNone(){
var mystyle = document.getElementById("txt");
mystyle.style.display = "none";
}
function changeDisplayNone(){
var mystyle = document.getElementById("txt");
mystyle.style.display = "none";
}
//定義"改變寬高"的函數
function changeHeight(){
var mystyle = document.getElementById("txt");
mystyle.style.width = "200px";
mystyle.style.height = "150px";
}
function changeHeight(){
var mystyle = document.getElementById("txt");
mystyle.style.width = "200px";
mystyle.style.height = "150px";
}
function changeColor(){
var mycolor = document.getElementById("txt");
mycolor.style.color = "blue";
mycolor.style.backgroundColor="#ccc";
}
var mycolor = document.getElementById("txt");
mycolor.style.color = "blue";
mycolor.style.backgroundColor="#ccc";
}
<script type="text/javascript">
var mywin=window.open("http://www.xianlaiwan.cn");
mywin.close();
</script>
var mywin=window.open("http://www.xianlaiwan.cn");
mywin.close();
</script>
2015-11-27
<script type="text/javascript">
var ff=confirm("是否打開新頁面?");
if (ff==true) {
window.open("http://www.baidu.com");
}else{
windows_1.close();
}
</script>
var ff=confirm("是否打開新頁面?");
if (ff==true) {
window.open("http://www.baidu.com");
}else{
windows_1.close();
}
</script>
2015-11-26