随笔分类 -  javascript

摘要://添加cookie function setCookie(name,value,second){ if(!name||!value) return; var exp = new Date(); if(!second){ exp.setDate(exp.getDate()+1); exp.setHo 阅读全文
posted @ 2021-07-25 22:05 xcc丶hi 阅读(119) 评论(0) 推荐(0)
摘要:使用 jQuery-File-Upload 库的时候碰到了 $(...).fileupload is not a function 和 $.widget is not a function 问题。 解决方法 :jquery.ui.widget.js 这个js文件一定要放在这个库其它js文件的前面。 阅读全文
posted @ 2019-09-30 15:22 xcc丶hi 阅读(2009) 评论(1) 推荐(2)