-
JavaScript源代码集
JavaScript源代码集 -JavaScript source code set JavaScript source code set
- 2023-08-30 18:40:03下载
- 积分:1
-
Screenshot
截屏程序,用于截取平面屏幕上制定地方的图像的java程序(Screenshot program, java program on the development of the image of the place for the interception of flat screen)
- 2012-09-04 16:55:31下载
- 积分: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
-
1
jQuery表格增加删除行响应式代码基于jquery.1.11.3.min.js制作,表格增加、删除功能。(JQuery table add-delete line response code based on jquery.1.11.3.min.js production, table add-delete function.)
- 2019-01-09 21:15:06下载
- 积分:1
-
图书借阅系统
自助图书借阅系统,实现预借功能,期末完成的数据库原理的作业,建的表满足3NF,写的比较简单但是基本算完整吧,有需要可以借鉴下。
- 2022-04-27 06:15:38下载
- 积分:1
-
运用struts+jsp技术对文章进行管理
运用struts+jsp技术对文章进行管理-The use of struts+ jsp technology to manage the article
- 2022-01-25 21:23:00下载
- 积分:1
-
spring面向切面的例子
了解spring面向切面的例子,通过spring的文件配置,具体来展示面向切面编程。
- 2022-02-01 17:21:04下载
- 积分:1
-
Hibernate实现购物车功能,基本的增、查、删、改
Hibernate实现购物车功能,基本的增、查、删、改-Hibernate shopping cart functions to achieve the basic increase, investigation, delete, change
- 2023-04-01 14:00:03下载
- 积分:1
-
最新仿小米手机商城ECSHOP模板微信商城版+3G手机触屏版+超强微信API接口+无线支付宝接口
最新仿小米手机商城ECSHOP模板微信商城版+3G手机触屏版+超强微信API接口+无线支付宝接口最新仿小米手机商城ECSHOP模板微信商城版+3G手机触屏版+超强微信API接口+无线支付宝接口
- 2022-03-23 23:04:04下载
- 积分:1
-
java 模板语言核心代码
模板语言,java,股票,证券。非常棒的。功能强大
package com.honey.template.algorithm.formula;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.honey.template.algorithm.formula.support.DataFieldValueContext;
import com.honey.template.algorithm.formula.support.RelatedFieldContext;
import com.honey.template.algorithm.formula.support.RelatedFieldInfo;
import com.honey.template.algorithm.formula.support.VariableContext;
import fr.expression4j.basic.MathematicalElement;
import fr.expression4j.core.Expression;
/**
*
* @ClassName: Formula
* @Description: TODO
* @author duanl
* @date 2016年6月13日
*
*/
public class Formula
{
private String v;
private String[] varnames;
private Map returns =
- 2022-05-14 09:40:41下载
- 积分:1