摘要:
用 input 的file类型标签上传文件,有时需要限制上传文件类型,添加accept属性可以实现 <input type="file" accept="image/png" > 或者 <input type="file" accept=".png" > 多种类型 <input type="file 阅读全文
摘要:
Git仓库:https://github.com/mandongpiaoxue/apache 本文原创,引用请注明出处 文件说明: 1. config.json文件的配置 2. run.bat文件代码 3. server.js文件代码与说明 3.1 引入模块和文件 3.2 写readfile函数:方 阅读全文
摘要:
var a=["aaa","bbb","ccc"]; var b="ccc" var i = a.indexOf(b);//查找數組:i=2 a.splice(i, 1);//移出指定item:a=["aaa","bbb"] 阅读全文
摘要:
解决方法: 阅读全文
摘要:
title 01 启动Ubuntu Kylin的LiveCD模式 kernel /ISO/Ubuntu/vmlinuz.efi boot=casper iso-scan/filename=/ISO/Ubuntu/Ubuntu.iso locale=zh_CN.UTF-8 initrd /ISO/ub 阅读全文
摘要:
1、打開註冊表:開始→運行→regedit 2、找到HKEY_CURRENT_USER\Software\Microsoft\Windows\currentVersion\Explorer\fileExts\.lnk,然后删除掉; 3、打開cmd:開始→運行→cmd→輸入“assoc .lnk=ln 阅读全文
摘要:
請用記事本保存為ANSI編碼格式 阅读全文
摘要:
修改路徑:/etc/apache2/sites-available/000-default.conf 修改內容: DocumentRoot "/media/F/www" <Directory "/media/F/www"> Options Indexes AllowOverride none Req 阅读全文
摘要:
/* 導出JSON格式 */ function exportJSON(data) { var exportData=JSON.stringify(data); save(exportData).as('json'); }/* 導出CSV data 為數據,title為標題 importType為輸入的類型 支持的類型分為 object、array、arrayinobject、o... 阅读全文
摘要:
/* 讀取excel文件 * 基於xlsx.core.min.js * 下載地址:https://github.com/SheetJS/js-xlsx/blob/master/dist/xlsx.core.min.js * ele為input:file文件,onlyone是否只讀取第一個表格 * callback回調函數,第一個參數為JSON數據,第二個為讀取的區域範圍 */ function... 阅读全文