- 浏览: 234154 次
- 性别:
- 来自: 济南
最新评论
-
xiajun612:
这样安装后,服务还是启动不了
Win8(.1) 安装VirtualSVN Server发生service visualSVN Server failed to start解决办法 -
原水小子:
pqiu 写道谢谢,成了,感谢您
客气,好东西就得分享
navicat for mysql 9.0.15注册码 -
pqiu:
谢谢,成了,感谢您
navicat for mysql 9.0.15注册码 -
原水小子:
jeffreyQiu 写道原水小子 写道敢问两位兄台尊姓大名? ...
安装升级IE9后一直自动弹出微软页面 解决办法 -
jeffreyQiu:
原水小子 写道敢问两位兄台尊姓大名?jeffreyQiu 写道 ...
安装升级IE9后一直自动弹出微软页面 解决办法
文章列表
// $(".applist").on("touchstart",function(e){
// var $el = $(this);
//// if(this.id<1000)return false;
// $el.attr("isTapping","true");
// setTimeout(function(){
// if($el.attr("isTapping")==="true"){
// $el.find(".un ...
淘宝网的语音搜索也有了一阵子了,但似乎都没看到相关的博客或帖子在说这个如何实现,今天查了点资料,发现原来实现是如此简单,可能是因为太简单了,也就没有人讨论了吧。
其实实现只需一句代码即可:
x-webkit-speech
一看到这句代码,想到了什么?对,这说明语音搜索只支持webkit内核浏览器,那么这段代码具体要放在哪呢?
1.
var reg = /^(\w|[\u4E00-\u9FA5])*$/;
if(arr=username.match(reg))
{
ti=1;
return ture;
}
else
{
alert("用户名只允许为英文,数字和汉字的混合,\n请检查是否前后有空格或者其他符号");
ti=0;
return false;
}
2.利用正则表 ...
function cancelBubble(evt) {
// 阻止事件冒泡
if (window.event) {
// Chrome,IE6,Opera
window.event.cancelBubble = true;
} else {
// FireFox 3
evt.stopPropagation();
}
}
----------------------------------js去空格--------------------------- 去除字符串左右两端的空格,在vbscript里面可以轻松地使用 trim、ltrim 或 rtrim,但在js中却没有这3个内置方法,需要手工编写。下面的实现方法是用到了正则表达式,效率不错,并把这三个方法加入String对象的内置方法中去。
// 写成类的方法格式如下:(str.trim();)
String.prototype.trim=function(){
return this.replace(/(^\s*)|(\s ...
今天在Win8.1系统安装VirtualSVN Server发生
Service 'VisualSVN Server' failed to start. Please check VisualSVN Server log in Event Viewer for more details. 错误
各种百度,都不得其解,神马手动启动VisualSVN Server service,勾选本地系统账户登 ...
http://dev.jtsage.com/jQM-DateBox/demos/install.html
我用了 Flipbox
除了引入jqm核心js和css外 还需要引入:
<link rel="stylesheet" href="../../css/jqm-datebox.min.css"> <script src="../../js/jqm-datebox.core.min.js"></script> <script src="../../js/jqm-da ...
<embed type="application/x-shockwave-flash" src="http://d2fy09acxvuqxd.cloudfront.net/widgets/hamster/hamster.swf" width="280" height="210" id="flashID" name="flashID" bgcolor="#FFFFFF" quality="high" f ...
//==============================
mCheckBoxView = (CheckBox) findViewById(R.id.settings_synch_delet);
mEditTextView = (EditText) findViewById(R.id.account_password);
mCheckBoxView.setOnCheckedChangeListener(checkBox_Listener);
private CheckBox.OnCheckedChangeListener checkB ...
Java 通用 SHA1 and MD5 算法,改SHA1只需把 hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));改成:
hash = MessageDigest.getInstance("SHA1").digest(string.getBytes("UTF-8"));
然后再改改catch里的语句就OK
public static String md5(Str ...
网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽:document.body.offsetWidth (包括边线的宽) 网页可见区域高:document.body.offsetHeight (包括边线的宽) 网页正文全文宽:document.body.scrollWidth 网页正文全文高:document.body.scrollHeight 网页被卷去的高:document.body.scrollTop 网页被卷去的左:document.body.scrollLeft 网页正文部分上:w ...
android 代码关闭软键盘
InputMethodManager imm = (InputMethodManager)getSystemServic(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
1)基本类型---数字,采用IEEE754标准定义的64位浮点格式.特殊数值常量:Infinity 无穷大的特殊值NaN 非数字值Number.MAX_VALUE 可表示的最大数字Number.MIN_VALUE 可表示的最小数字Number.NaN 非数字值Number.POSITIVE_INFINITY 正无穷大Number.NEGATIVE_INFINITY ...
html5app也分情况:
一种是app, 只是通过html5做, 那其中一部分功能当然是通过第三方浏览器实现不了或者
不能很好实现的了, 好处就是对性能要求不高的场景降低开发成本了
一种是网站本地化, 一 ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charse ...