我正在编写一个脚本,但不确定为什么这不起作用
function moveIn($selector) {
if( $( $selector[left] ) != null ){
$direction = 'left';
}else{
$direction = 'right';
}
这确实有效:
if( $( '#hello[left]' ) != null ){
这基本上就是我想要吐出的东西。似乎括号导致了问题。这还要怎么写?未来编码的提示?谢谢
整体功能:
function moveIn($selector) {
if( $( $selector + '[left]' ) != null ){
$direction = 'left';
}else{
$direction = 'right';
}
var animation = {};
animation[$direction] = 0;
$($selector).animate(animation, 1500);
}