① 弹出窗口的html的代码是怎么写的
1、最基本的弹出窗口代码
< SCRIPT LANGUAGE="javascript">
< !--
window.open ("page.html")
-- >
< /SCRIPT>
window.open ("page.html") 用于控制弹出新的窗口page.html,如果page.html不与主窗口在同一路径下,前面应写明路径,绝对路径(http://)和相对路径(../)均可。
2、经过设置后的弹出窗口
< SCRIPT LANGUAGE="javascript">
< !--
window.open ("page.html", "newwindow", "height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no")
->
< /SCRIPT>
< SCRIPT LANGUAGE="javascript"> js脚本开始;window.open 弹出新窗口的命令;"page.html" 弹出窗口的文件名;"newwindow" 弹出窗口的名字(不是文件名),非必须,可用空"代替;
3、用函数控制弹出窗口
< script LANGUAGE="JavaScript">
< !--
function openwin() {
window.open ("page.html", "newwindow", "height=100, width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
}
-->
< /script>
这里定义了一个函数openwin(),函数内容就是打开一个窗口。
4、同时弹出2个窗口
< script LANGUAGE="JavaScript">
< !--
function openwin() {
window.open ("page.html", "newwindow", "height=100, width=100, top=0, left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
window.open ("page2.html", "newwindow2", "height=100, width=100, top=100, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no")
}
-->
< /script>
为避免弹出的2个窗口覆盖,用top和left控制一下弹出的位置不要相互覆盖即可。
5、主窗口打开文件1.htm,同时弹出小窗口page.html
< script language="javascript">
< !--
function openwin() {
window.open("page.html","","width=200,height=200")
}
-->
< /script>
② 急求一段html代码~打开网页后自动弹出提示!
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="css/absolute_layout.css"/>
<title>Absolute Test</title>
<style type="text/css">
div{width: 200px;height: 100px;position: relative;margin: 0 auto;top: 250px;background: #FFFFFF;opacity: 0.65;text-align: center;box-shadow: 2px 2px 5px #ababab;border-radius: 4px 4px;}
h4{font-size: 14px;color: #4c4c4c;position: relative;top: -10px;}
span{position: relative;cursor: pointer;}
span:first-child{left: 90px;}
span:first-child:hover{border: 1px solid #4C4C4C;}
.jx{left: -20px;top: -10px;}
.jx a{text-decoration: none;color: #4c4c4c;}
.jx a:hover{color: #FF9900;}
.qx{left: 20px;top: -10px;}
</style>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function(){
$("div").fadeIn(1000);
$(".gb").click(function(){
$("div").fadeOut(400);
});
$(".qx").click(function(){
$("div").fadeOut(400);
});
});
</script>
</head>
<body bgcolor="#4c4c4c">
<div style="display: none;">
<span class="gb">×</span>
<h4>我已编辑好</h4>
<span class="jx"><a href="http://www..com">继续</a></span><span class="qx">取消</span>
</div>
<p style="color: #ff6600;">使用时,需要导入jQuery.min的开发文件</p>
</body>
③ html怎么做出点一个按钮,就弹出一段文字的窗口效果
html做点一个按钮就弹出文字的代码:
最基本的弹出窗口代码
<SCRIPT LANGUAGE="javascript">
<!-- window.open ('page.html') --> </SCRIPT>
经过设置后的弹出窗口
<SCRIPT LANGUAGE="javascript">
<!-- window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no') //-->
</SCRIPT>
用函数控制弹出窗口
<html>
<head>
<script LANGUAGE="JavaScript">
<!-- function openwin() { window.open ("page.html", "newwindow", "height=100, width=400, toolbar =no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //} //-->
</script>
</head>
<body onload="openwin()">
</body>
</html>
同时弹出2个窗口
<script LANGUAGE="JavaScript">
<!-- function openwin() { window.open ("page.html", "newwindow", "height=100, width=100, top=0, left=0,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=n o, status=no")//window.open ("page2.html", "newwindow2", "height=100, width=100, top=1 00, left=100,toolbar=no, menubar=no, scrollbars=no, resizable=no, loca tion=no, status=no")//} //-->
</script>
主窗口打开文件1.htm,同时弹出小窗口page.html
如下代码加入主窗口<head>区:
<script language="javascript">
<!-- function openwin() { window.open("page.html","","width=200,height=200") } //-->
</script>
加入<body>区: <a href="1.htm" onclick="openwin()">open</a>
弹出的窗口之定时关闭控制
首先,将如下代码加入page.html文件的<head>区:
<script language="JavaScript">
function closeit()
{ setTimeout("self.close()",10000) //毫秒 }
</script>
在弹出窗口中加上一个关闭按钮
<FORM>
<INPUT TYPE='BUTTON' VALUE='关闭' onClick='window.close()'>
</FORM>
内包含的弹出窗口-一个页面两个窗口
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
function openwin()
{ OpenWindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar=no");
//OpenWindow.document.write("<TITLE>例子</TITLE>")
OpenWindow.document.write("<BODY BGCOLOR=#ffffff>")
OpenWindow.document.write("<h1>Hello!</h1>")
OpenWindow.document.write("New window opened!")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close() }
</SCRIPT>
</head>
<body>
<a href="#" onclick="openwin()">打开一个窗口</a>
<input type="button" onclick="openwin()" value="打开窗口">
</body>
</html>
终极应用--弹出的窗口之Cookie控制
首先,将如下代码加入主页面HTML的<HEAD>区:
<script>
function openwin(){
window.open("page.html","","width=200,height=200") }
function get_cookie(Name) { var search = Name + "=" var returnvalue = "";
if (document.cookie.length > 0) { offset = document.cookie.indexOf(search)
if (offset != -1) { offset += search.length end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end)) } }
return returnvalue; }
function loadpopup(){ if (get_cookie('popped')==''){ openwin()
document.cookie="popped=yes" } }
</script>
④ html代码点一下显示文字
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title></title>
<styletype="text/css">
body{
margin:0;
padding:0;
}
#hide{
display:none;
}
</style>
<scriptsrc="http://libs..com/jquery/2.0.0/jquery.min.js"></script>
<scripttype="text/javascript">
$(function(){
$('#btn1').click(function(){
$('#hide').show();
vart=setTimeout("$('#hide').hide()",5000);
})
varhtml='';
$('#btn2').click(function(){
html+='<div>生成的文字(5S后消失)</div>';
$('#apd').append(html);
vart=setTimeout("$('#apd').text('')",5000);
html='';
})
})
</script>
</head>
<body>
<divid="box1">
<buttonid="btn1">点击显示隐藏文字</button>
<divid="hide">
显示隐藏的文字(5S后消失)
</div>
</div>
<divid="box2">
<buttonid="btn2">点击生成文字</button>
<divid="apd">
</div>
</div>
</body>
</html>
⑤ HTML窗口弹出代码
<!doctype html>
<html>
<head><title>无标题文档</title></head>
<body>
<!--插入按钮 开始-->
<input type="button" value="弹出对话框" onclick="MsgBox()" />
<!--插入按钮 结束-->
<!--引用JS代码以达到弹出对话框目的 开始-->
<script language="javascript">
function MsgBox() //声明标识符
{
alert("我是对话框的内容"); //弹出对话框
}
</script>
<!--引用JS代码以达到弹出对话框目的 结束-->
</body>
</html>
方法参数详解
参数解释:
window.open 弹出新窗口的命令;
'page.html' 弹出窗口的文件名;
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替;
height=100 窗口高度;
width=400 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值;
toolbar=no 是否显示工具栏,yes为显示;
menubar,scrollbars 表示菜单栏和滚动栏。
resizable=no 是否允许改变窗口大小,yes为允许;
location=no 是否显示地址栏,yes为允许;
status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许;
⑥ 求html弹出文本窗口代码
<head>
<metacharset="utf-8">
<style>
body,div{margin:0;padding:0;border:0}
#div1{width:300px;height:200px;border:1pxsolidred;margin-left:50px}
</style>
</head>
<body>
<divid="div1">
div元素
<ahref=""target="_blank">打开一内个新窗口容</a>
</div>
<scripttype="text/javascript">
vardiv=document.getElementById("div1");
div.onclick=function(){
alert(div1.getElementsByTagName("a")[0].innerHTML);
}
</script>
</body>