why Jquery and (Javascript Fundamentals ) Understanding the Document Object Model(DOM)

来源:互联网 发布:3d3s结构设计软件 编辑:程序博客网 时间:2024/05/29 17:16

DOM


  Jquery provides a way to work accross the Broswers to access the DOM which is the biggest advatange; DOM has been implemented
  by many providers since many years; difference between different browsers has made a lot of headache for developpers. developpers
  used to study what the specific browser support. Jquery provides the way to easy access the DOM and simplified/unified ways to do the development.

  The web browser will process the received HTML files into a DOM structured in-memory object;

  It is strongly recommanded that the js script should not be mixed with the html code;

  Below are all DOM functions:

windows.onload=function(){}//annoymous function
document.getElementByID('x').onclick=function
document.getElementByTag
x.parantNode
x.nodeName to get the h1, p, div,etc.,
x.href=x.setAttribute('href', 'http://o.comn')
x.getAttribute('href');
innerHTML should be used cautiously as it is not supported by call browwsers'
The getElementByClass should be delegated to Jquery as this is not common methond;

 

AJAX
  provides several simple methods you can use to exchange data with a webserver using Ajax and easy ways to work with the data that's returned via an ajax call

EVENTS
  solves the DOM ready vs. windows onload dilamma; support a simplified event handling model; provides the
  bootstrap scripts to access to the DOM immediately; The big file could be slow to load and it will cause the js not work
  correctly

Effects
 has built-in effects
 Allow you to use plugins for additional effects and other jquery based packages

 

www.jquery.com
CDN hosted Jqeury
Googld AJAX API CDN;Microsoft CND;Jquery CND
There are two version of Jquery which are deleveopment and production verions;

External JavaScript Libraries in WinRT application;
for host enforecement you can check: Building Real-World Metro style apps using JavaScript