Toady我用简写语法玩了一点..发现了2个很酷的方法可以写出长期无聊的if
语法,还学习了关于闭包的新东西......
这与我的出现有关。
这是一个带有一个eventHandler的手风琴菜单的切换功能。
function h(e){
var p='parentNode',a=e.target,b=a[p],f=48,u='px',y=b[p];
!y.c||(y.c==b||(y.c.style.height=f+u,y.c.x=f)),
y.c=y.c==b?null:b,
a!=b.firstChild||(b.x=b.x>f?f:
(f+b.childNodes[1].offsetHeight),b.style.height=b.x+u)
}
这是一个例子。
http://jsfiddle.net/YjCbM/(使用Chrome 29测试)
出现错误..这有效http://jsfiddle.net/YjCbM/1/
在这个例子中,我使用了e.target,webkit css3以及其他各种浏览器不支持的东西,但是从那开始...这个简写语法是否适用于旧版/其他浏览器?
ps.:不要整理jsfiddle中的代码或没有任何作用
修改 在得到一些答案后......
一些有用的缩写
var W=window,D=W.document,G='getElementById',
E=W.addEventListener?'addEventListener':'attachEvent',
// this awesome as i don't use jQuery.
// this way i have a short getElementbyId() like jQuery's $()
// and also a ie compatible addEventListener.
a=D[G](x);
//document.getElementById(x)
a[E]('click',handler);
//a.addEventListener() or a.attachEvent()
a=x?y:x
//if x is defined, true, or not 0 it will take the y value
if ( x == true ) {
a = y;
}else{
a = x;
}
a=x||y;
//if x is not defined it will take y
if ( x == true ) {
a = x
}else{
a = y
}
x||(x=y,alert(x)) // <- this is fabulous
// if x is not defined, not true, or 0 it will set the x with the y value
// and alert x
if ( x == 'undefined' ) {
x = y;
alert ( x );
}
// how manytimes did it happen that you wanted to do just a short check but you hat to
//set 2-3 variables and could not use a simple a=x||y
// whith this shorthand you can.
var a = 1;
var b;
var c = a;
// is the same as
var a=1,b,c=a;
edit2
我对所有这些downvotes都有一个问题禁令。但我真的不明白为什么我有这么多的downvotes ... 请解释你的downvotes 。
答案 0 :(得分:3)
如果您指的是三元运算符?:
,那么是的,所有浏览器都支持。
它的使用方式如下:
condition ? ifTrue : ifFalse
例如:
'You have ' + (milkAmount <= 0 ? 'no' : (milkAmount + ' cups')) + ' of milk!'
如果您指的是或运算符||
,那么也是如此。例如:
a || b || c
这将找到a
,b
和c
中的第一个变量,并选择第一个不是 falsy 的变量({{1} },undefined
,0
,false
等。)