スクリプトに取り組んでいますが、なぜこれが機能しないのかわかりません
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);
}