资料来源:网络整理
时间:2023/2/14 0:03:18 共计:3609 浏览
JQuery和Prototype区别小结
jQuery使用得比较顺手也比较喜欢,不得已也要用Prototype,小小整理下区别。。
页面载入
-
// JQuery
-
$ ( document ). ready ( function () {
-
// Code
-
});
-
// JQuery Shorthand
-
$ ( function () {
-
// Code
-
});
-
// Prototype
-
document . observe ( 'dom:loaded' , function () {
-
// Code
-
});
根据ID获取
-
// JQuery
-
$ ( "#idname" );
-
// Prototype
-
$ ( "idname" );
根据类名
-
// JQuery
-
$ ( ".classname" );
-
// Prototype
-
$$ ( '.classname' );
根据第一个符合的类名
-
// JQuery
-
$ ( ".classname:first-child" );
-
// Prototype
-
$$ ( '.classname' )[ 0 ];
根据ID绑定监听事件
-
// JQuery
-
$ ( "#item" ). bind ( 'click' , function () {
-
// Code
-
});
-
-
// JQuery Shorthand
-
$ ( "#item" ). click ( function () {
-
// Code
-
});
-
// Prototype
-
$ ( "#item" ). observe ( 'click' , function () {
-
// code
-
});
根据符合的类名绑定监听事件
-
$(".classname").bind('click',function(){
-
// code
-
});
-
-
// JQuery Shorthand
-
$ ( ".classname" ). click ( function () {
-
// code
-
});
-
// Prototype
-
$$ ( ".classname" ). invoke ( 'observe' , 'click' , function () {
-
// code
-
});
结束终止事件
-
// JQuery
-
$ ( "#id" ). click ( function () {
-
-
//code
-
return false ;
-
});
-
// Prototype
-
$ ( "id" ). observe ( 'click' , function ( e ) {
-
//code
-
Event . stop ( e );
-
});
处理观察的元素
-
// JQuery
-
$ ( '#idname' ). click ( function () {
-
this . hide (); // Hide the item clicked
-
});
-
// Prototype
-
$ ( 'idname' ). observe ( 'click' , function ( e ) {
-
el = e . findElement ;
-
el . hide (); // hide the item clicked
-
});
根据ID操作类名
-
// JQuery
-
$ ( '#id' ). addClass ( 'red' );
-
$ ( '#id' ). removeClass ( 'red' );
-
// Prototype
-
$ ( 'id' ). addClassName ( 'red' );
-
$ ( 'id' ). removeClassName ( 'red' );
根据类名操作类名。。
-
// JQuery
-
$ ( '.class' ). addClass ( 'red' );
-
$ ( '.class' ). removeClass ( 'red' );
-
// Prototype
-
$$ ( '.class' ). invoke ( 'addClassName' , 'red' );
-
$$ ( '.class' ). invoke ( 'removeClassName' , 'red' );
AJAX请求和JSON应用
-
$.get(url,function(data){
alert(data . name );
-
}, 'JSON' );
-
// Prototype
new Ajax . Request ( url , {
-
method : 'get' ,
-
onSuccess : function ( transport , json ) {
-
alert ( json . name );
-
}
-
});
可以得出结论:jQuery和Prototype大部分是极为相似的,多用几次就都熟了。。
版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。