html网页源代码是什么 如何查看网页源代码经验篇

html网页源代码是什么 如何查看网页源代码经验篇,第1张

第一种:打开一个网页后点击鼠标的 右键就会有"查看源文件", *** 作 鼠标右键--->查看源文件 即可d出一个记事本,而记事本内容就是此网页的html代码。

可能会碰到一些网页鼠标右键无反应或提出提示框,那是因为做网页的加入了JS代码来禁止用户查看源文件代码或复制网页内容,但是这种方法也没用,只有你稍微懂得以下第二种方法即可查看此网页的源代码源文件。

第二种:通过浏览器状态栏或工具栏中的点击 “查看”然后就用一项“查看源代码”,点击查看源代码即可查看此网页的源代码源文件。

在微软IE下 查看--->源文件 即可查看此网页代码在傲游浏览器下截图:

查看别人网页的源代码可以为我们制作网页时候有帮助,以后将介绍查看源代码更多方法及怎么运用到别人的源代码文件。

三、其它浏览器具体查看html网页源代码方法步骤   -   TOP

首先请打开您的网络浏览器,然后访问任何一个网页。

完成上述步骤后,您可以通过以下针对不同网络浏览器的简单步骤快速查看html网页源代码。

1)、Firefox浏览器,请按以下步骤 *** 作:

点击火狐firefox浏览器上方“工具(T)”菜单。

在下拉菜单中点击“Web 开发者”。

然后在下拉菜单中选择点击“页面源代码”,即可查看网页源代码。

2)、谷歌浏览器,请按以下步骤 *** 作:

点击广告浏览器,右上角“三横”控制图标

在下拉菜单点击“工具”

然后再点击“查看源代码”。

或直接谷歌浏览器中使用快捷键“Ctrl+U”即可查看被访网页源代码。

对于这些的话,新手朋友可以参考附件里面的知识学习下

把下面的代码存为html.asp,代码中相关按自己要求修改,1.htm和1.asp<%

filename="1.htm"

if request("body")<>"" then

Set fso = Server.CreateObject("Scripting.FileSystemObject")

Set fout = fso.CreateTextFile(server.mappath(""&filename&""))

fout.Write request("body")

fout.close

set fout=nothing

set fso=nothing

mskrindex="ok"

end if

%>

<script language="Javascript">

<!-- hide

function insertsmilie(smilieface){ document.frmAnnounce.body.value+=smilieface}

// -->

</script>

<html>

<head>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />

<title>生成html</title>

</head>

<body>

<%if mskrindex="ok" then%>

<p></p>

<table border="0" cellspacing="0" width="80%" cellpadding="5">

<tr>

<td align="center">

<font color="red">√</font><%=Now()%>生成成功,点击浏览<a target="_blank" href="<%=filename%>"><%=filename%></a>

</td>

</tr>

</table>

<%else%>

<table width="95%" border="0" cellspacing="0" cellpadding="2">

<tr>

<form name="frmAnnounce" method="post" action="html.asp">

<td>

<font color="red"><b>生成</b>(生成文件为:<%=filename%>)</font>

</td>

</tr>

</table>

<table width="100%" border="0" align="center" cellpadding="2" cellspacing="0" height="90%">

<tr>

<td>

<textarea style="width:98%height:90%" name="body"><!--#include file="1.asp"--></textarea>

<input type="submit" name="Submit" value="生成">

</td>

</form>

</tr>

</table>

<%

end if

%>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6294337.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-20
下一篇 2023-03-20

发表评论

登录后才能评论

评论列表(0条)

保存