- 博客(4)
- 收藏
- 关注
原创 判断链接是否是https访问
function is_https(){ if ( ! empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') { return TRUE; } elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) &am...
2019-10-14 10:47:44
702
原创 input hidden 的值被改变了怎么检测
<input type="hidden" name="scope" value="0">$("input[name='scope']").val('111').blur();使用获取焦点方法即可$(document).on('blur',"input[name='scope']",function(){ console.log(111);});...
2019-04-04 15:23:00
3645
原创 html2canvas + jsPDF 实现保存网页为图片
<script type="text/javascript" src="js/rgbcolor.min.js"></script><script type="text/javascript" src="js/canvg.js"></script><script type="text/
2018-09-14 14:05:43
1289
原创 php 逐行读取文件内容
$file_path = "0910.txt";if(file_exists($file_path)) { $file_contents = file($file_path); for ($i = 0; $i < count($file_contents); $i++) {//逐行读取文件内容 echo $file_contents[$i]."<br...
2018-09-14 11:23:24
3868
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人