当前位置:首页 > 笔记

python excel 的使用 只读

夏立军4年前 (2020-09-25)720
python excel 的使用 只读
˃ # 直接上代码 ```pythonimport xlrd # pip install xlrdimport xlwt # pip install xlrd excel_name = ‘test.xlsx’ 打开文件workBook = xlrd.open_workbook(excel_...

JS 函数回调

夏立军4年前 (2020-09-01)585
JS  函数回调
// 函数 function aa(callback){ data = { 'a':1, 'b':22 } callback(data); } // 函数回调 aa((data)=˃{...

[JS] 轮询与定时任务

夏立军4年前 (2020-08-04)557
[JS] 轮询与定时任务
``` // 轮询 setInterval(() =˃ { console.log(1) }, 1000); // 定时任务 setTimeout(() =˃ { console.log(2) }, 1000); ```...

[转载]jQuery ajax 同步失效?

夏立军4年前 (2020-07-27)747
[转载]jQuery ajax 同步失效?
今天表单验证时,出现了一个异常现象,耗去了我不少时间呀。 我的验证方法大致如下: ```function checkform(){ var mail=$.trim($(‘#mail’).val()); if(mail.length==0){ alert(‘请填写邮箱’)...

PHP 单例模式

夏立军4年前 (2020-07-17)601
PHP 单例模式
```phpclass TestClass{ //创建静态私有的变量保存该类对象 static private $instance; //防止使用new直接创建对象 private function __construct() { } //防止使用clone克隆对象 priv...