http://developer.51cto.com/art/201007/214478.htm
分类:
系统相关 时间:
2014-04-29 10:37:46
阅读次数:
540
1、去掉字符串前后所有空格:代码如下:functionTrim(str){returnstr.replace(/(^\s*)|(\s*$)/g,"");
}说明: 如果使用jQuery直接使用$.trim(str)方法即可,str表示要去掉前后所有空格的字符串。2、去掉字符串中所有空格(包括中间空格...
分类:
Web程序 时间:
2014-04-29 10:36:47
阅读次数:
505
jQuery Mobile 页面事件在 jQuery Mobile
中与页面打交道的事件被分为四类:Page Initialization - 在页面创建前,当页面创建时,以及在页面初始化之后Page Load/Unload -
当外部页面加载时、卸载时或遭遇失败时Page Transition -...
分类:
Web程序 时间:
2014-04-29 10:32:47
阅读次数:
477
一、height() 方法 height()
方法返回或设置匹配元素的高度$(".btn1").click(function(){ $("p").height(50);});height方法事例
分类:
Web程序 时间:
2014-04-29 10:17:45
阅读次数:
411
终于有时间静下来总结一下最近的工作。第一个就是html编辑器:首先是编辑器的选择,之前用的是ewebeditor,功能很强大,出于粘贴word内容得安装插件的原因,暂时放弃。ewebeditor的配置也很方便,代码如下:"
/>默认选择office2003皮肤,因此改默认字体大小可以修改相应的皮肤。...
分类:
Web程序 时间:
2014-04-29 09:38:46
阅读次数:
440
1 //获取当前显示区域的大小,即clientWidth和clientHeight 2
function getClient(){ 3 var isXHTML; //初始值默认 符合DOM的xHTML标准 4 var
clientWidth,clientHeight; 5 if(docume...
分类:
其他好文 时间:
2014-04-29 09:36:46
阅读次数:
465
$.browser.mozilla =
/firefox/.test(navigator.userAgent.toLowerCase());$.browser.webkit =
/webkit/.test(navigator.userAgent.toLowerCase());$.browser.op...
分类:
Web程序 时间:
2014-04-29 09:34:46
阅读次数:
435