-
域名whois查询系统
输入域名查询whois, 支持后缀: .com, .net .org及.cn等246类国家域名
- 2022-01-25 15:18:37下载
- 积分:1
-
HTML
集中讲述了HTML开发的基本资料,其中,包含HTML的语法基础,页面基本元素等.(Focus on the development of the basic information of HTML, which contains HTML syntax based on the basic elements of the page and so on.)
- 2013-05-24 18:59:04下载
- 积分:1
-
js 写入文档
$(function(){
$("#import").click(function(){
$("#files").click();
});
});
function importMsg(){
var selectedFile = document.getElementById("files").files[0];//获取读取的File对象
var name = selectedFile.name;//读取选中文件的文件名
var size = selectedFile.size;//读取选中文件的大小
console.log("文件名:"+name+"大小:"+size);
var reader = new FileReader();//这里是核心!!!读取操作就是由它完成的。
reader.readAsText(selectedFile);//读取文件的内容
reader.onload = function(){
console.log(this.result);//当读取完成之后会回调这个函数,然后此时文件的内容存储到了result中。直接操作即可。
};
}
$(function(){
$("#export").click(function(){
var content = "This is used as HTML5 log";
var blob = new Blob([content], {"type": "
- 2022-01-28 03:32:10下载
- 积分:1
-
简易下拉菜单
三款非常小巧的下拉菜单代码,简单使用;菜单还可以是不同形状的,非常棒!
- 2023-06-26 19:05:03下载
- 积分:1
-
手机自定义确认提示框代码
说明: uery手机自定义确认提示框代码是一款手机弹窗提示框,自定义弹窗内容(Uery mobile phone custom confirmation box code is a mobile phone pop-up window prompt box, custom pop-up window content)
- 2019-02-16 08:50:45下载
- 积分:1
-
World-wide-web-programming(7th).pdf
Web程序设计第7版中文版第5章,Robert W. Sebesta著(Web programming 7th edition Chinese edition Chapter 5, Robert W. Sebesta with)
- 2015-01-26 19:35:52下载
- 积分:1
-
ox样式美化效果
说明: 一款效果非常酷的CSS3复选框checkbox样式美化效果。(A very cool CSS3 check box checkbox style beautification effect.)
- 2019-02-18 09:42:49下载
- 积分:1
-
css
说明: 交互式页面,好看新颖。纯原创,单纯的分享。(Interactive page, beautiful and novel. Pure originality, pure sharing.)
- 2019-04-25 21:03:05下载
- 积分:1
-
一段html和css js的网页代码
html css js,一段html和css js的网页代码,供观摩学习,界面简洁清晰,设计创造新颖,适合初学者学习,涵盖了一些基本的html css布局,
- 2022-08-16 08:39:30下载
- 积分:1
-
简单blog系统
简单的blog系统 部分功能为实现 供新手使用
- 2022-03-01 03:11:03下载
- 积分:1