- 博客(13)
- 收藏
- 关注
转载 jquery 操作iframe的几种方法总结选择器
("#mainframe",parent.document.body).contents().find("someID").html()或者 $("#mainframe",parent.document.body).contents().find("someID").val()一个页面中的所有框架以集合的形式作为window 对象的属性提供,例如:window.frames就表示该页面内所有框架的集合,这和表单对象、链接对象、图片对象等是类似的,不同的是,这些集合是 document的属性。
2023-05-26 11:28:04 4240 1
翻译 vue + element-ui from 图片上传
<template><el-uploadlist-type="picture-card"action="''" //上传的路径:http-request="upload":before-upload="beforeAvatarUpload"><i class="el-icon-plus" /></el-upload>...
2019-07-03 10:18:11 545
翻译 vuejs脚手架配置和打包
vue-cli搭建1、下载脚手架npm install --global vue-clivue init webpack gshop gshop 项目名称自行修改cd gshopnpm installnpm run dev2、运行脚手架npm run dev 或者 npm start 打包好的文件在dist文件夹下3、项目打包npm run bu...
2019-04-11 11:19:48 664
翻译 Liunx+Nginx+php+Mysql环境安装
一、安装前准备1、个人喜欢liunx小插件 vimroot# yum install vim 提示是否同意安装 选择 y 回车 然后就在各种依赖文件。2、安装php 选择编译安装,编译安装属于一个复杂的方式,但很灵活。root# wget http://hk1.php.net/get/php-7.2.10.tar.gz/from/this/mirror //下载文件下载完成,解压...
2018-10-14 20:49:35 137
原创 SQ语句查询统计嵌套查询查询速度不怎么理想
SELECT (tangniaobing) tangniaobing,(gaoxueya) gaoxueya,(yunfu) yunfu, (chanfu) chanfu, (canjiren) canjiren, (jiehebing) jiehebing, (jingshenbing) jingshenbing, (jihua) jihua,(wubao) wubao, (shin...
2018-06-13 14:55:32 307
原创 php 多维数组遍历,返回遍历处理后的数组,数组结构不不变
<?php public function for_array($arr = array ()) { if(empty($arr)) { return false; } foreach ( $arr as &$v) { if (is_array($v)) { $v = $this->for_ar...
2018-04-09 14:31:28 1617
翻译 反射获取类名
/* Pass the name of the class, not a declared handler */function get_public_methods($className) { /* Init the return array */ $returnArray = array(); /* Iterate through each method in
2017-02-05 15:50:58 350
原创 权限控制
$array_file = array(); $dir = APP . "Controllers/"; //打开文件流 $handle = opendir(__DIR__); while (false !== ($file = readdir($handle))) { if ($file != "."
2017-02-05 14:41:36 149
翻译 SQL查询重复值
查询数据库字段的重复出现select * from `A` where `id` in (select `id` from `A` WHERE `s_id` = 5 group by `id` having count(1) >= 2)
2017-01-20 14:27:51 197
原创 SQL嵌套查询
SELECT `a`.`id`, GROUP_CONCAT(`p`.`title`) FROM `table1` `a` LEFT JOIN `table2` `p` ON `p`.`code`=`a`.`code` GROUP BY `a`.`id`
2017-01-18 10:15:10 177
原创 图片大小自适应
$(document).ready(function() { var maxWidth = $('.hot ul li').width(); // 图片最大宽度 var maxHeight = $('.hot ul li').height(); // 图片最大高度 $('.hot ul li span a div').each(funct
2016-11-08 17:28:10 218
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人