We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
``` python Node.prototype.toggle = function(flag){ this.style.display=!!flag ? 'block' : 'none'; return this; } Node.prototype.show = function(){ this.toggle(true); } ``` - 定义通用工具类,如 ``` python var UTIL = $U= { getURLParam: function(){ ``` - 定义定制工具类,如 ``` python SN = { getURLIOS:function(param){ ```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
着落页项目总结
- 扩展DOM对象,如
四级页项目总结
- 第一阶段 我提出nodeJS全栈战略。由于产品经理只给予不到一周的开发时间。后台合作领导也谨慎地抱着否决态度,不得不放弃。
- 第二阶段 我提出动静分离战略。 我四级页采用HTML开发。通过ajax与后台交互。此交互有两大缺陷:1,性能会低于后台模板渲染 2,失去SEO。 第2点我提出的解决方案是,同步提供一套采集页,供SEO采集。第1点,考虑到如果采用Java freemark后台主导来开发,会更糟糕,两害取其轻,我自信也可以处理好。然而产品经理仍然不愿增加时间。理由是: 发布时间点是上面BOSS定的,不可以改。不得不放弃。
- 最后,采用JAVA FreeMark模板渲染。我提供静态页。辅助后台JS业务处理。我与3-8名后台JAVA人员对接。整天为bug,业务调试疲于奔命。
The text was updated successfully, but these errors were encountered: