会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
不知起什么名字
念念不忘,必有回响
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
下一页
2019年12月30日
js监听dom元素内容变化
摘要: //监听某个元素下新增元素事件 $("#photos").bind('DOMNodeInserted', function(e) { alert('element now contains: ' + $(e.target).html()); }); //监听某个元素里移除元素的事件 $("#phot
阅读全文
posted @ 2019-12-30 16:12 不知起什么名字
阅读(9572)
评论(0)
推荐(1)
编辑
jq在元素的后面插入内容
摘要: 1.after() 在元素的后面插入内容 $(selector).after(content);
阅读全文
posted @ 2019-12-30 16:06 不知起什么名字
阅读(1892)
评论(0)
推荐(0)
编辑
2019年12月21日
yii2 Query Builder 查询打印sql语句
摘要: $query = new Query(); $query->select('gs.*, g.goods_images, sa.attr_name, sa.is_default, sa.alias_sort')->from(GoodsSpec::tableName() . ' gs'); $query
阅读全文
posted @ 2019-12-21 11:40 不知起什么名字
阅读(890)
评论(0)
推荐(0)
编辑
2019年12月10日
js replace(a,b)替换指定字符
摘要: var a="aaabbb" a= a.replace("aaa", "ccc") console.log(a) //a ="cccbbb"
阅读全文
posted @ 2019-12-10 14:05 不知起什么名字
阅读(794)
评论(0)
推荐(0)
编辑
2019年11月20日
linux 打印当前工作目录
摘要: pwd
阅读全文
posted @ 2019-11-20 11:16 不知起什么名字
阅读(3016)
评论(0)
推荐(1)
编辑
linux 查看磁盘空间
摘要: df -lk //单位为KB df -lm //单位为MB
阅读全文
posted @ 2019-11-20 11:12 不知起什么名字
阅读(113)
评论(0)
推荐(0)
编辑
linux查看大文件
摘要: du -h --max-depth=1
阅读全文
posted @ 2019-11-20 11:10 不知起什么名字
阅读(1379)
评论(0)
推荐(0)
编辑
js-Cannot read property 'innerHTML' of null
摘要: 原因:1.$('#xxx') 或$('.xxx')不存在 2.$('#xxx')或$('.xxx')的值为空
阅读全文
posted @ 2019-11-20 09:23 不知起什么名字
阅读(964)
评论(0)
推荐(0)
编辑
2019年11月19日
C++ auto 完成类型自动推导与使用
摘要: c++11 允许声明一个变量或对象(object)而不需要指明其类型,只需说明它是auto。 1.如: auto i = 42; //i是整型 double f(); auto d=f(); //d是双精度类型 2.如果类型很长或表达式很复杂时,auto特别有用,如: vector<string>
阅读全文
posted @ 2019-11-19 22:42 不知起什么名字
阅读(497)
评论(0)
推荐(0)
编辑
js实现sleep
摘要: console.log("start"); await new Promise(function(resolve, reject) { setTimeout(function(){ $('.tips-box').hide(); $('.tips-box').attr("date-id","1"); ...
阅读全文
posted @ 2019-11-19 11:58 不知起什么名字
阅读(226)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
下一页
公告