Sorry for this late declaration. Due to current job postion's contract agreement, I stop keep updating this blog. I understand it's a pity, but this's
...继续阅读
(100)
If you are using the NetSuite customer center or My Account if you are using Ecommerce, you have the ability to post different search results to customers. If you wanted to have a list of items that w...
...继续阅读
(90)
/**
* 使表单的第一个非 hidden 类型而且处于可用状态的元素获得焦点
*/
focusFirstElement: function(form) {
form = $(form);
var elements = Form.getElements(form);
for (var i = 0; i < elements.length; i++) {
var element ...
...继续阅读
(95)
批量修改文件名:
同样在命令提示符下输入for /r . %a in (*.aa) do rename %a *.bb
需要使用: for %a in (*.*) do ren "%a" "%a".html
要注意这个"%a"否则系统可能会认为你要重命名的是一个文件夹,就会报错The syntax of the command is incorrect.
...继续阅读
(105)
如何优化JavaScript脚本的性能
作者:ShiningRay @ Nirvana Studio
随着网络的发展,网速和机器速度的提高,越来越多的网站用到了丰富客户端技术。而现在Ajax则是最为流行的一种方式。JavaScript是一种解释型语言,所以能无法达到和C/Java之类的水平,限制了它能在客户端所做的事情,为了能改进他的性能,我想基于我以前给JavaScript做过的很多测试来谈谈...
...继续阅读
(104)