samsung study notes 3

1. How to capture browser close event with JS?
var inFormOrLink=true;
$('a').on('click', function() { inFormOrLink = false; });
$('form').on('submit', function() { inFormOrLink = false; });

$(window).on("beforeunload", function() {
if(inFormOrLink){
    window.location.href = BASE_PATH + "/systemMonitor/userOperationMonitor/closeExploreAndMoveSession.do";
}
});
2. Analysis Technical changes of JavaScript engine
http://djt.qq.com/article/view/489

3./Springframework / Four steps to complete Spring internationalization dynamic configuration
http://www.xdemo.org/spring-i18n/

js internationalization :
http://my.oschina.net/u/871551/blog/422799

3.jquery official website
http://api.jquery.com/

4. css z-index layer overlapping order
5. In HTML5, what is the difference between <br><br/><br />?
http://www.zhihu.com/question/21632236

6. The difference between jQuery(function(){}) and (function(){})(jQuery) in jQueryhttp :
//www.cr173.com/html/ 17629_1.html
7.JSON.parse() and JSON.stringify()
https://msdn.microsoft.com/en-us/library/cc836458(v=vs.94).aspx


8. jQuery.proxy
http:/ /www.css88.com/jqapi-1.9/jQuery.proxy/

http://www.365mini.com/page/jquery_proxy.htm
9. $(function(){}) and (function($){} in jQuery )(jQuery), $(document).ready(function(){}), etc. Explain in detail
10.jquery's debugging tool: Detailed explanation of Firebug use

11.Spring @Value default value
http://www.mkyong.com/ spring3/spring-value-default-value/
12. Use of jquery.cookie() method (read, write, delete)
http://www.jb51.net/article/44181.htm
13. What is the function of prototype in js?
http://zhidao.baidu.com/link?url=AaUDRFf0dEe7XgD_GHUEmanFg_qvvWUF60vfyNOInhXlJT84tRmbU8KEYD2Oq3RBoqw8kfLi2wypNJxVIqCWgK
14. Detailed explanation of window.showModalDialog() in JS
15. window.parent summary
http ://sh. /blog/452682

16.js iteration object
var map = { a: 1, b: 2 };
for(var i in map){
    console.log(i);
}
//The result is a, b
jQuery.map()
http://www.css88.com/jqapi-1.9/jQuery.map/

Jquery UI widgets, such as: sortable()
17.http://www.runoob.com/jqueryui/api-sortable.html
18. Explain in simple language This in JavaScript
http://www.ibm.com/developerworks/cn/web/1207_wangqf_jsthis/

19.The use of Jquery clipboard
http://bbs.csdn.net/topics/390538227

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326614777&siteId=291194637