摘要:
# Check if a file exists, or route it to index.php. try_files $uri $uri/ /exploit/index.php?$query_string; if (!-e $request_filename) { rewrite ^(.*)$ 阅读全文
摘要:
json转数组 首先必须定义 var data = {}; 不是 var data = new Array(); 然后 var data = {}; JSON.stringify(data) 数组转json var data = {a : 1,b : 2}; JSON.parse(data); 阅读全文
摘要:
基本的添加事件,把#select替换即可 $(document).on('click', '#select', function (e) { let that =this; $("#select").show(); }); ajax封装,因为是用的laravl,headers一般可不写 functi 阅读全文