導航:首頁 > 編程語言 > html網頁彈出文字代碼

html網頁彈出文字代碼

發布時間:2023-09-07 06:27:44

① 彈出窗口的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")&nbsp;

->

< /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")
&nbsp;

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做點一個按鈕就彈出文字的代碼:

  1. 最基本的彈出窗口代碼

    <SCRIPT LANGUAGE="javascript">

    <!-- window.open ('page.html') --> </SCRIPT>

  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=n o, status=no') //-->
    </SCRIPT>

  3. 用函數控制彈出窗口

    <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>

  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=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>

  5. 主窗口打開文件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>

  6. 彈出的窗口之定時關閉控制

    首先,將如下代碼加入page.html文件的<head>區:
    <script language="JavaScript">
    function closeit()
    { setTimeout("self.close()",10000) //毫秒 }
    </script>

  7. 在彈出窗口中加上一個關閉按鈕
    <FORM>
    <INPUT TYPE='BUTTON' VALUE='關閉' onClick='window.close()'>
    </FORM>

  8. 內包含的彈出窗口-一個頁面兩個窗口
    <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>

  9. 終極應用--彈出的窗口之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>

(5)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>

閱讀全文

與html網頁彈出文字代碼相關的資料

熱點內容
數位板word 瀏覽:939
win7寬頻連接出現多重網路 瀏覽:268
更改程序圖標c語言 瀏覽:629
網路電視偷停怎麼辦 瀏覽:418
linux連接ftp 瀏覽:512
es文件瀏覽器視頻筆記 瀏覽:874
mac無法打開描述文件 瀏覽:134
什麼軟體打文件 瀏覽:53
資料庫無數據變成0 瀏覽:899
名企筆試如何刷編程題 瀏覽:49
js跳到頁面某地 瀏覽:550
jsp展示clob欄位 瀏覽:779
nyx在網路上是什麼意思 瀏覽:145
樂播農業app是什麼 瀏覽:530
編程框架如何開發 瀏覽:136
金庸群俠傳3修改代碼 瀏覽:712
檢察院的文件類別有哪些 瀏覽:793
怎麼把九游殘留數據刪除 瀏覽:828
有什麼女生主動聊天的app 瀏覽:436
有哪些可以督促自己的app 瀏覽:244

友情鏈接