首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

MooTools学习札记(三)-函数

2012-08-25 
MooTools学习笔记(三)-函数Mootools函数:alert($$(*).get(html))//显示当前文件的html源码alert($$(

MooTools学习笔记(三)-函数
Mootools函数:

alert($$('*').get('html'));//显示当前文件的html源码alert($$('.b','.c').get('title'));//同时选择多个节点alert($$('a[title=B1]').get('href'));//title='B1'的a节点alert($$('[href^=http]').get('href'));//href以http开头的节点alert($$('p > a').get('href'));//p下的a节点alert($$('a:not(.c)').get('href'));//class不等于c的a节点alert($$('a:index(0)').get('href'));//索引是0的a节点alert($$("a[title][href$=jpg]").get('href'));//包含title属性,且href属性以jpg三个字母结尾的a节点


set,setProperty:用来赋值,看例子:
$('a').set('name','jimingsong');$('a').setProperty('class','abc');

get,getProperty:用来取值,看例子:
$('a').get('jimingsong');$('a').getProperty('class');

hasClass,addClass,removeClass,toggleClass://判断是否有某样式,新增样式,移除样式,交换样式,看例子
alert($('a').hasClass('abc'));$('a').addClass('abc');$('a').removeClass('abc');$('a').toggleClass:('bc');

setStyle,getStyle://设置或获取css样式,看例子
$('a').setStyle('display','none');alert($('a').getStyle:('display'));

getSize://得到宽度和高度(.x .y),看例子
var size=$('a').getSize();alert(size.x+'and'+size.y);


.trim()去除字符串两边的空格
.toInt() .toFloat() 转为整数  转为小数
.toUpperCase()转为大写字母
.toLowerCase()转为小写字母


热点排行