#NP

使用input选择本地图片,并且实现预览功能

1、使用input标签选择本地图片文件用一个盒子来存放预览的图片 2、JS实现预览 首先添加一个inputchange事件,再用到 URL.createObjectURL()方法 用来创建URL的 File 对象或者 Blob 对象​&nb...

选择本地文件上传控件 input标签

当要通过控件来选择本地文件上传的时候的一种方式<inputtype="file"id="input-file"/>注意type类型一定要是file  当年选择文件之后,就用 this.file[0]来获得文件的基本信息下面为项目中的应用html<divclass="upl...

openpyxl模块读写xlsx文件

xls文件的读写用xlrd和xlwt模块(见文章里的转载),xlsx文件的读写用openoyxl模块写xlsx:importopenpyxlwritebook=openpyxl.load_workbook('test0.xlsx',)#打开已经存在的文件test=writebook['test']#读取sheettes...

html 设置input框的记忆功能(联想内容)

autocomplete=“on/off”1.默认情况下,autocomplete的值是on。你可以将其设置为off。2.autocomplete属性可以放在input元素上,也可以放在form元素上...

在input中放对象

varinput=$("<inputtype='hidden'class='hidden-user'/>");$(input).data("rankList",对象);//放对象$(inputHidden).data("rankList");//取对象值 ...
代码星球 ·2020-06-27

NPOI创建doc

 usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.IO;usingNPOI.XW...
代码星球 ·2020-06-22

微信小程序获取input值的两种常用方式

 1、bindinput<inputbindinput='getInputValue'name='price'type='text'placeholder='输入内容'></input>其中 e.detail 是获取 input 数据其中包含va...

npoi设置数据有效性

npoi设置数据有效性publicvoidSetDataValidate(ISheetsheet,intfirstCol,intlastCol){CellRangeAddressListregions=newCellRangeAddressList(1,65535,firstCol,lastCol);DVConstra...
代码星球 ·2020-06-22

NPOI创建DOCX常用操作

1、 创建文档XWPFDocument m_Docx= new XWPFDocument();2、 页面设置          //1‘=1440twip=2...

修改输入框placeholder文字默认颜色-webkit-input-placeholder

html5为input添加了原生的占位符属性placeholder,高级浏览器都支持这个属性,例如:<inputtype="text"placeholder="我爱北京天安门"value="">默认的placeholder字体颜色是呈浅灰色,如果想改变这个默认颜色,解决方案如下::-moz-placehol...

NPOI操作

1.操作Excel  准备生成的公共方法(将数据源DataTable转换成MemoryStream) 1///<summary>2///生成Excel3///</summary>4///<paramname="table">DataTable</param>5/...
代码星球 ·2020-06-21

JSON和JSONP

http://kb.cnblogs.com/page/139725/...
代码星球 ·2020-06-17

基于Ajax的文件上传使用FileInput插件(使用谷歌翻译作者的原文,大致意思是对的,自己把握)

bootstrap-fileinput说明文档:http://plugins.krajee.com/file-input有许多人希望学习使用bootstrap-fileinputjQuery插件实现AJAX上传的查询和请求。如何构建服务器代码(例如PHP)来解析AJAX响应并将数据发送回插件?这个webtip提到了一个...

nvm 安装 npm 报错Cannot find module 'D: ode odejs ode_modulein pm-cli.js'

Cannotfindmodule'D:odeodejsode_moduleinpm-cli.js'在nvm安装node后使用node-v没问题使用npm-v报错最后是在D:根目录分别安装root:D:vmpath:D:odejs没问题了其中试了很多方法,环境变量添加删除时隔很久发现,找不到npm就直接复制一份npm到...

npm aes 加密(js aes 加密)

 加密functionencryption(plaintText){//明文varplaintText=plaintText;//ECB加密varoptions={mode:CryptoJS.mode.ECB,padding:CryptoJS.pad.Pkcs7};//CBC加密//varoptions={/...
代码星球 ·2020-06-17
首页上一页...3940414243...下一页尾页