-
JavaScript权威指南(第四版)全面介绍了JAVASCRIPT语言核心,以及WEB浏览器中实现的遗留和标准的DOM。运用了一些复杂的例子,说明如何处理验证...
JavaScript权威指南(第四版)全面介绍了JAVASCRIPT语言核心,以及WEB浏览器中实现的遗留和标准的DOM。运用了一些复杂的例子,说明如何处理验证表单数据,使用COOKIC,创建可移值的DHTML动画等常见任务,还包括详细的参考手册等-Authority JavaScript Guide (fourth edition) a comprehensive introduction to the core language JAVASCRIPT and WEB browser and standards to achieve a legacy of the DOM. The use of a number of complex examples to illustrate how to deal with form data validation, use COOKIC, to create a shift value of common tasks, such as DHTML animation, but also a detailed reference manual, such as
- 2022-07-27 10:29:55下载
- 积分:1
-
这是一个可以直接使用的财务管理系统,并想喝到…
这是一个财务管理系统,直接使用就可以了,希望能喝大家分享-This is a financial management system can be used directly, and want to drink to share with you
- 2022-09-28 20:30:03下载
- 积分:1
-
process
说明: 自定义画布式流程图,只需简单的配置,即可生成流程图(Customized canvas flow chart can be generated with simple configuration)
- 2019-03-14 11:00:23下载
- 积分:1
-
对联广告
说明: 自己写的对联广告,随滚动条滚动,代码简单有备注(Write your own couplet ads, scroll along with the scroll bar, the code is simple with notes)
- 2020-06-23 22:20:02下载
- 积分:1
-
raphael
说明: raphael for someone utils
- 2020-06-19 00:00:02下载
- 积分:1
-
使用servlet用户认证
用户输入他/她的凭据登录的用户的基本身份验证。程序检索数据从MySQL数据库检查已注册的用户,显示相应的信息。
- 2022-03-14 12:23:53下载
- 积分:1
-
传智CRM模板
根据传智的教学视频自己编写的crm项目,还原度能达到80%以上吧,适合初学者分析代码用
- 2022-02-09 19:32:57下载
- 积分:1
-
applets
JavaCard Applet代码,可以供开发Applet参考。(sample code for applet on javacard.)
- 2015-01-22 19:45:14下载
- 积分:1
-
javascript实现显示日期功能包括阳历和农历的年月日 以及星座 还有弹簧式导航的源码
javascript实现显示日期功能包括阳历和农历的年月日 以及星座 还有弹簧式导航的源码-javascript display date realize features include solar and lunar years there is a spring day and the constellation of navigation source
- 2022-05-24 11:39:37下载
- 积分: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