比如说这样的写法正确么?
pageIndex == 1 ? function() { ("#paged a:eq(0)").attr("disabled", true); $("#paged a:eq(1)").attr("disabled", true); } : function() { $("#paged a:eq(0)").removeAttr("disabled"); $("#paged a:eq(1)").removeAttr("disabled"); };
试试 pageIndex = 1 ? (function a(){})() : (function b(){})();
原来还要加上括号,感谢!