
JavaScript
123
Nothing impossible!
展开
-
单词首字母大写 JavaScript
单词首字母大写每单词首字大写,其他小写。如blue idea转换为Blue Idea,BLUE IDEA也转换为Blue Ideacloeft的正则: /\b(\w)|\s(\w)/g 所谓“首字母”包括两种情况:第一种是边界(开头)的单词字符,一种是空格之后的新单词的第一个字母。测试代码如下: function replaceReg(reg,str)原创 2011-12-09 14:47:14 · 3692 阅读 · 0 评论 -
改造 ztree 以便于兼容 Angular ui-router 的 ui-sref 功能
修改 ztree 兼容 angularjs-ui-router原创 2015-01-12 16:38:11 · 5645 阅读 · 1 评论 -
Firefox 弹出窗口不让显示地址栏设置.
1、 在地址栏里输入 : about:config 点确定2、搜索: location 找到 dom.disable_window_open_feature.location;false 设置为 false 3、重新打开就可以了。原创 2015-01-19 16:50:31 · 3285 阅读 · 0 评论 -
Why is .innerText not working in Firefox?
innerText is the "old Internet Explorer" way of doing it.Try textContent instead.原创 2015-03-19 10:47:53 · 744 阅读 · 0 评论