标签关键词

关于 HTML 的文章共有14条

电脑工具

让网页在打开几秒之后就转向其它的页面

阅读(491)评论(0)

http://www.xxinn.cn/web/338.html 有些朋友需要打开网页几秒后就转向到别的页面,那么就需要下面的功能。 只要加入以下的代码就可以实现。  第一种方法:使用Meta <Meta http-equiv=Refresh Content=30> <Meta http-...

其它资料

TV3.0文件修改说明

阅读(540)评论(0)

inc目录 err.html 报错 cachevodtype 目录 0_1-1.html 热播频道 底部留言 报错 template\xxdy55\ads 目录 typegg.js 中间的横条通告 gonggao.js 首页 最新消息 erweima.js 二维码图片地址 anniu.js 点蓝字 秀秀最新影视 (暂时找不到在...

其它资料

html页面弹出密码框

阅读(594)评论(0)

function init() { var  yanzhengma = window.prompt("输入访问口令", ""); if( yanzhengma == "123" ) { location.href = "/index.html"; return true; } else { alert("密码错误,重新输入");...

其它资料

html网页设如何置访问密码

阅读(616)评论(0)

1、新建index.html页面 紧接着前面共享目录中的本地网站来写,可以省去许多麻烦,各位看官也能读懂。 在共享目录中新建一个text文本文件,重命名为index.html。   2、写入HTML文件 任何一个网页式的文件,必须要有HTML文件的元素,才算合格的网页。 ...

其它资料

首页跳转代码

阅读(509)评论(0)

<html> <head> <meta http-equiv=refresh content="0;url=yyyy_vod_list.php?orderby=avod_id"> <meta http-equiv="cache-control" content="no-store, no-cache, m...

其它资料

TV直接提取的跳转代码

阅读(474)评论(0)

<script> var system = {win:false,mac:false,x11:false}; var p = navigator.platform; system.win = p.indexOf("Win") == 0; system.mac = p.indexOf("Mac") == 0; system.x11 = (...