if ( $("#someID").length > 0 ) {
$("#someID").text("hi");
}
注意 :判断某个页面元素存在与否在jQuery实际上是没有必要的,jQuery本身会忽略 对一个不存在的元素进行操作,并且不会报错。
转载请注明:...
苏 demo
8年前 (2016-12-12)
2596℃
0评论
0喜欢
Android 7.1.1 正式版发布:提升续航,支持压感
Android 7.1.1 除了修复不少 Bug 外,还重新对系统进行了优化,以便最大的程度的增加手机续航,同时新系统还包含最初在 Pixel 上推出的出色的应用程序快捷方式功能,比如长按某个应用程序的图标,会激活功能快...
苏 demo
8年前 (2016-12-11)
3611℃
0评论
588喜欢
命令行:
find /data -name libaocai
find 的基本语法:
find path expression search-term
centos 安装 locate
yum install mlocate
ubuntu
apt-get install mloc...
苏 demo
8年前 (2016-12-08)
2464℃
0评论
0喜欢
下载安装包并进行解压缩:
wget http://www.xunsearch.com/download/xunsearch-full-latest.tar.bz2
tar -xjf xunsearch-full-latest.tar.bz2
解压缩后执行脚本进行安装:
cd x...
苏 demo
8年前 (2016-11-29)
2611℃
0评论
1喜欢
一、查看CPU个数
cat /proc/cpuinfo|grep “physical id”|uniq|wc -l
二、查看CPU核数
cat /proc/cpuinfo | grep “cpu cores” | uniq
三、 ...
苏 demo
8年前 (2016-11-26)
2216℃
0评论
0喜欢
下载:
1157
转载请注明:苏demo的别样人生 » jQuery信息提示弹出层插件...
苏 demo
8年前 (2016-11-26)
2696℃
0评论
0喜欢
css代码:
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
us...
苏 demo
8年前 (2016-11-26)
4291℃
0评论
0喜欢
操作步骤:
1.入口文件index.php文件中定义生成静态页面的文件位置
define( 'HTML_PATH' , './Html' );
2.config文件夹中的config.php配置静态页面的类型,设为 html
'HTML_FILE_SUFFIX' => '....
苏 demo
8年前 (2016-11-26)
3738℃
0评论
0喜欢
备份 (所有)
C:\Program Files\MySQL\MySQL Server 5.6\bin>mysqldump –no-defaults -hlocalhost -P3306 -uroot -p -R test > h:\test.sql
备份...
苏 demo
8年前 (2016-11-20)
2445℃
0评论
0喜欢
Array()创建数组
array_diff()比较数组,返回差集(只比较键值)
array_pop()删除数组的最后一个函数(出栈)
Array_rand()返回数组中的一个或者多个随机的键
Array_replace()使用后面数组的值替换第一个数组的值
Array_reve...
苏 demo
8年前 (2016-11-20)
2301℃
0评论
0喜欢