小摘记

js获取页面宽度高度及屏幕分辨率



网页可见区域宽:document.body.clientWidth 

网页可见区域高:document.body.clientHeight 
网页可见区域宽:document.body.offsetWidth (包括边线的宽) 
网页可见区域高:document.body.offsetHeight (包括边线的宽) 
网页正文全文宽:document.body.scrollWidth 
网页正文全文高:document.body.scrollHeight 
网页被卷去的高:document.body.scrollTop 
网页被卷去的左:document.body.scrollLeft 
网页正文部分上:window.screenTop 
网页正文部分左:window.screenLeft 
屏幕分辨率的高:window.screen.height 
屏幕分辨率的宽:window.screen.width 
屏幕可用工作区高度:window.screen.availHeight 

屏幕可用工作区宽度:window.screen.availWidth


Click binding

The click binding will attach a method of the View-Model to the click DOM event of the target element. The methods will be invoked when the user clicks the target DOM element.

Using the click binding

 id="view">
 data-bind="click: showDescription">Show description
 data-bind="visible: isDescriptionShown, text: description">


 

The click binding is a shorthand for the events binding. The following code snippets are equivalent:

 data-bind="click: clickHandler">

 data-bind="events: { click: clickHandler }">

Accessing the DOM event argument

Kendo MVVM supplies the DOM event argument wrapped in a jQuery Event object.

Stopping DOM event bubbling

To stop the event from bubbling up the DOM tree use the stopPropagation method.

Stop event bubbling

 data-bind="click: click">Click

Preventing the default action of the DOM event

For some DOM elements the click event has a default action - for example navigate to another page or submit a form. To prevent the default action use the preventDefault method.

Prevent default event action

 href="http://example.com" data-bind="click: click">Click

你可能感兴趣的:(小摘记)