導航:首頁 > 編程語言 > 簡單的網頁框架代碼

簡單的網頁框架代碼

發布時間:2023-08-30 04:04:29

⑴ 製作一個如下圖所示的框架網頁,寫出HTML代碼

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<frameset rows="80,*,60" framespacing="0">
<frame name="Head" src="Head.html" noresize="noresize" marginwidth="0" marginheight="0" scrolling="no"></frame>
<frameset cols="160,*">
<frame name="Index" src="Index.htm" noresize="noresize" marginwidth="0" marginheight="0"
scrolling="no"></frame>
<frame name="Main" src="Main.htm" noresize="noresize" marginwidth="0" marginheight="0" scrolling="no"></frame>
</frameset>
<frame name="Foot" src="Copyright.htm" noresize="noresize" marginwidth="0" marginheight="0" scrolling="no"></frame>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>

⑵ 網頁框架代碼

你切換到代來碼也看看,如頂部源框架,<
frameset rows="80,*" frameborder="no" border="0" framespacing="0">
<frame src="1.htm" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frame src="2.htm" name="mainFrame" id="mainFrame" />
</frameset>

target的值就是目標框架的name的值。

即在上框架頁面的鏈接target="mainFrame".

具體得看目標框架的name值是什麼,target就等於什麼。

⑶ 網頁設計常用HTML代碼

網頁設計常用HTML代碼大全

HTML是用來描述網頁的一種語言。下面我為大家分享HTML代碼,希望對大家學習html代碼有幫助!

忽視右鍵

<body oncontextmenu="return false">

<body style="overflow-y:hidden">

1.如何幾秒後轉到別的頁面?

<META HTTP-EQUIV="Refresh" CONTENT="時間;URL=地址">

2.點擊關閉窗口

<a href="javascript:top.window.close();">點擊關閉窗口</a>!

3.請問如何去掉主頁右面的滾動條?

<body scroll="no">

<body style="overflow-y:hidden">

4.請問如何做到讓一個網頁自動關閉.

<html>

<head>

<OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">

<param name="Command" value="Close">

</object>

</head>

<body onload="window.setTimeout(‘‘‘‘closes.Click()‘‘‘‘,10000)">

這個窗口會在10秒過後自動關閉,而且不會出現提示. </body>

如何在不刷新頁面的情況下刷新css?

<style>

button{ color:#000000;}

</style>

<button onclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘>點擊按鈕直接修改style標簽里button選擇符使按鈕改為紅色</button>

請問如何讓網頁自動刷新?

在head部記入<META HTTP-EQUIV="Refresh" content="20">其中20為20秒後自動刷新,你可以更改為任意值。

5.如何讓頁面自動刷新?

方法一,用refresh

HTML 代碼片段如下:

<head>

<meta http-equiv="refresh" content="5">

</head>

5表示刷新時間

[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]

方法二,使用setTimeout控制

<img src=/logo.gif>

<script>

function rl(){

document.location.reload()

}

setTimeout(rl,2000)

</script>

6.如何讓超鏈接沒有下劃線

在源代碼中的<HEAD>…</HEAD>之間輸入如下代碼:

<style type="text/css"> <!--

a { text-decoration: none}

--> </style>

7.請問如何去掉IE的上下滾動條?

<body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘>

</body>

8.怎樣才能把RealPlayer文件在網頁做一個試聽連接?

<embed height=25src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart="false" controls="PlayButton">

9.如何用html實現瀏覽器上後退按鈕的功能?

<a href="java script:history.go(-1)">點擊後退</a>

或者

<script> history.back() </script>

10.請問怎麼在網頁中改變滑鼠的箭頭形狀?

HTML 代碼片段如下:

<body>

<a href="#" style="cursor: auto;">auto</a><br>

<a href="#" style="cursor: crosshair ">crosshair </a><br>

<a href="#" style="cursor: default ">default </a><br>

<a href="#" style="cursor: hand ">hand </a><br>

<a href="#" style="cursor: move ">move </a><br>

<a href="#" style="cursor: e-resize ">e-resize </a><br>

<a href="#" style="cursor: ne-resize ">ne-resize </a><br>

<a href="#" style="cursor: nw-resize">nw-resize</a><br>

<a href="#" style="cursor: n-resize">n-resize</a><br>

<a href="#" style="cursor: se-resize">se-resize</a><br>

<a href="#" style="cursor: sw-resize">sw-resize</a><br>

<a href="#" style="cursor: s-resize">s-resize</a><br>

<a href="#" style="cursor: w-resize">w-resize</a><br>

<a href="#" style="cursor: text">text</a><br>

<a href="#" style="cursor: wait">wait</a><br>

<a href="#" style="cursor: help">help</a><br>

</body>

11.怎樣不使用頁面的緩存?即每一次打開頁面時不是調用緩存中的東西

<META HTTP-EQUIV="Pragma" CONTENT="no-cache">

12.頁面打開時自動彈出一個窗口的代碼怎麼寫?

HTML 代碼片段如下:

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<script language="<B style="color:black;background-color:#A0FFFF">javascript</B>">

<!--

function MM_openBrWindow(theURL,winName,features) { //v2.0

window.open(theURL,winName,features);

}

//-->

</script>

</head>

<body bgcolor="#FFFFFF" text="#000000" onLoad="MM_openBrWindow(‘‘‘‘http://www.35ui.cn/‘‘‘‘,‘‘‘‘,‘‘‘‘width=400,height=400‘‘‘‘)">

</body>

</html>

13.如何讓我的頁面出現一個會講話的小人?Merlin

HTML 代碼片段如下:

<HTML>

<HEAD>

<TITLE>默林</TITLE>

<META http-equiv=Content-Type content="text/html; charset=gb2312">

</HEAD>

<BODY>

<p><OBJECT id=sims classid=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F>

</OBJECT>

<SCRIPT>

var MerlinID;

var MerlinACS;

sims.Connected = true;

MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS);

Merlin = sims.Characters.Character(MerlinID);

Merlin.Show();

Merlin.Play("Surprised");

Merlin.Speak("大家好");

Merlin.Play("GestureLeft");

Merlin.Think("我是默林!");

Merlin.Play("Pleased");

Merlin.Think("可愛嗎?");

Merlin.Play("GestureDown");

Merlin.Speak("哈哈!");

Merlin.Hide();

function LoadLocalAgent(CharID, CharACS){

LoadReq = sims.Characters.Load(CharID, CharACS);

return(true);

}

</SCRIPT>

</p>

<p> </p>

<p>看此效果必須裝有office2000!!!</p>

</BODY>

</HTML>

14.在頁面中如何加入不是滿鋪的背景圖片,拉動頁面時背景圖不動

HTML 代碼片段如下:

<html><head>

<STYLE>

body {background-image:url(logo.gif);

background-repeat:no-repeat; background-position:center }

</STYLE>

</head>

<body bgproperties="fixed" >

</body>

</html>

[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]

background-repeat:no-repeat; 是讓背景圖不佔滿整個頁面

body bgproperties="fixed" 是拉動scroll時背景圖不動

15.文本輸入框什麼屬性能實現不可輸入?

HTML 代碼片段如下:

<input type="text" name="textfield" disabled>

或者

<input type="text" name="textfield" readonly>

16.如何禁止自己的頁面在別人的框架里打開?

把以下代碼加至你的<head>區

<script>

if (window.top!=self){

window.top.location=self.location

}

</script>

17.如何實現首頁全屏幕顯示?

HTML 代碼片段如下:

<html>

<body><script language="<B style="color:black;background-color:#A0FFFF">javascript</B>">

var coolw=642

var coolh=400

var coolhuang=window.open("http://www.35ui.cn","coolhuang","width="+coolw+",height="+coolh+",

fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")

window.close()

</script></body></html>

18.如何監聽一個窗口被關閉了?

HTML 代碼片段如下:

<body onunload="alert(‘‘‘‘你關閉了這個窗口‘‘‘‘)">

19.如何禁止Ctrl+N?

HTML 代碼片段如下:

<body onkeydown=return(!(event.keyCode==78&&event.ctrlKey))>

如何把頁面加入用戶的收藏夾?

HTML 代碼片段如下:

<a href="<B style="color:black;background-color:#A0FFFF">javascript</B>:window.external.AddFavorite(‘‘‘‘http://www.35ui.cn‘‘‘‘,‘‘‘‘無憂腳本‘‘‘‘)">收藏無憂腳本</a>

如何在我的'頁面中加入背景音樂?

IE: <bgsound src="*.mid" loop=infinite>

NS:<embed src="*.mid" autostart=true hidden=true loop=true>

*.mid你的背景音樂的midi格式文件

關於頁面轉換效果

<meta http-equiv="page-enter" content="revealTrans(Duration=4,Transition=23)">

<meta http-equiv="page-exit" content="revealTrans(Duration=4,Transition=23)">

說明:Transition=23是隨機效果,另可以選0-22任一數字固定某個效果

如何設定打開頁面的大小

HTML 代碼片段如下:

<body onload="top.resizeTo(300,200);"><!--(width,height)-->

怎樣雙擊滾屏,單擊停止?

HTML 代碼片段如下:

<html>

<head>

<title>新網頁1</title>

</head>

<body>

<script language"<B style="color:black;background-color:#A0FFFF">javascript</B>">

var currentpos,timer;

function initialize()

{

timer=setInterval("scrollwindow()",10);

}

function sc(){

clearInterval(timer);

}

function scrollwindow()

{

currentpos=document.body.scrollTop;

window.scroll(0,++currentpos);

if (currentpos != document.body.scrollTop)

sc();

}

document.onmousedown=sc

document.ondblclick=initialize

</script>

<p>a</p><p>a</p><p>a</p><p>aa</p><p>aa</p><p>aa</p>

<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p>

<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>aa</p>

<p>aa</p><p>aa</p><p>aa</p><p>aa</p><p>a</p>

</body>

</html>

如何讓body中的文字不被選中?

HTML 代碼片段如下:

<body onselectstart="return false" >aaa</body>

如何讓彈出的窗口不能關閉?

在新開的窗口中加入如下代碼

<body onunload=open(location.href)>

</body>

如何讓瀏覽器在保存頁面時保存失敗?

HTML 代碼片段如下:

<NOSCRIPT>

<<B style="color:black;background-color:#ffff66">IFRAME</B> SRC="*.html">

</<B style="color:black;background-color:#ffff66">IFRAME</B>>

</NOSCRIPT>

表單中如何用圖片按鈕實現 reset?

<html>

<head>

<script>

function aaa(){

document.forms[0].reset()

}

</script>

</head>

<body>

<form>

<textarea rows="2" name="S1" cols="20"></textarea>

<input type="submit" values="提交" name="B1">

<image src="logo.gif" onclick=aaa()>

</form>

</body></html>

進入網頁時彈出的信息對話框

<body onLoad="window.alert(‘‘‘‘歡迎光臨本站‘‘‘‘)">

關閉窗口後彈出對話框

<body onUnload="window.alert(‘‘‘‘謝謝你的光臨!歡迎下次再來!‘‘‘‘)">

告別提示

<body onUnload= alert("再見,感謝你的訪問!")>

右鍵菜單的製作

<OBJECT id=menu type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">

<PARAM name="Command" value="Related Topics,menu">

<PARAM name="Item1" value="動易;http://www.35ui.cn">

<PARAM name="Item2" value="搜狐;http://www.35hu.cn">

<PARAM name="Item3" value="新浪;http://www.35no.cn">

<PARAM name="Item4" value="網易;http://www.chinsgp.cn">

<PARAM name="Item5" value="互動學院;http://www.35ui.cn">

</OBJECT> <script> if (document.all) document.body.onmousedown=new Function("if (event.button==2) menu.Click();") </script>

下拉菜單

<object id=HHCtrl type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"> <PARAM name="Command" value="Related Topics,Menu"> <PARAM name="Item1" value="aspease;http://www.35ui.cn"> <PARAM name="Item2" value="byhu;http://www.35ui.cn"> <PARAM name="Item3" value="lzz;http://www.35ui.cn"> </object> <a href=javascript:HHCtrl.Click() title="下拉菜單">下拉菜單</a>

;

⑷ 網頁設計框架怎麼做

網頁設計框架做法如下:學習網頁設計框架推薦咨詢【達內教育】。

1、第一步:新建網頁
首先;打開軟體,選擇菜單欄下「修改」——「框架集」——「拆分為左右框架」。進行三個網頁的保存。
2、第二步:製作左邊的框架網頁
首先插入表格並設置基本屬性:選擇主菜單下的「插入」——「表格」。接著設置表格的屬性:(4行1列的表格「高300像素、寬100像素」,表格邊框為黃色、背景為綠色。)其中的高,邊框顏色都是使用代碼輸入。
3、第三步:設置css樣式
首先打開css面板,選擇該面板的下面的「+」號,出現下圖所示的效果。設置樣式。選擇「id」類型,取名為「stlye1」,保存了「僅存為該文檔」。設置樣式屬性。「華文楷體、14磅、加粗、黑色」。
4、第四步:使用css樣式
在表格中書寫相應的文字。選中所有的文字,然後來到屬性面板。選擇「類」——「stlye1」,;就設置好css樣式。
5、第五步:設置文字的位置。
選中文字,來到屬性面板,設置「水平」,「垂直」的屬性等。感興趣的話點擊此處,免費學習一下

想了解更多有關框架的相關信息,推薦咨詢【達內教育】。達內與阿里、Adobe、紅帽、ORACLE、微軟、美國計算機行業協會(CompTIA)、網路等國際知名廠商建立了項目合作關系。共同制定行業培訓標准,為達內學員提供高端技術、所學課程受國際廠商認可,讓達內學員更具國際化就業競爭力。達內IT培訓機構,試聽名額限時搶購。

閱讀全文

與簡單的網頁框架代碼相關的資料

熱點內容
南翔嘉定編程課哪裡好 瀏覽:853
win10改變文件格式 瀏覽:475
linux中的物理地址和虛擬地址 瀏覽:493
有哪些app可以接游戲訂單 瀏覽:472
蘋果硬碟數據恢復要多少錢 瀏覽:394
js綁定下拉框資料庫數據 瀏覽:448
cad文件怎麼復制到另一個文件里邊 瀏覽:858
dxp鑽孔文件 瀏覽:631
iphone大悅城換機 瀏覽:538
找結婚對象上什麼網站 瀏覽:974
學生信息管理系統程序設計報告 瀏覽:640
微信文件怎麼刪除怎麼恢復 瀏覽:407
編程程序怎麼復制 瀏覽:467
文件更改 瀏覽:327
冰點文件路徑 瀏覽:730
軟體一點開文件就關閉 瀏覽:88
網路如何把人捧紅 瀏覽:961
軟體傳輸文件 瀏覽:184
密碼記錄器ios 瀏覽:412
兩個電腦數據怎麼一樣 瀏覽:829

友情鏈接