python excel 的使用 只读
˃ # 直接上代码 ```pythonimport xlrd # pip install xlrdimport xlwt # pip install xlrd excel_name = ‘test.xlsx’ 打开文件workBook = xlrd.open_workbook(excel_...
JS 函数回调
// 函数 function aa(callback){ data = { 'a':1, 'b':22 } callback(data); } // 函数回调 aa((data)=˃{...
[JS] 轮询与定时任务
``` // 轮询 setInterval(() =˃ { console.log(1) }, 1000); // 定时任务 setTimeout(() =˃ { console.log(2) }, 1000); ```...
[转载]jQuery ajax 同步失效?
今天表单验证时,出现了一个异常现象,耗去了我不少时间呀。 我的验证方法大致如下: ```function checkform(){ var mail=$.trim($(‘#mail’).val()); if(mail.length==0){ alert(‘请填写邮箱’)...