我有一個jquery如下:jQuery的推送(陣列)不工作
$('.cl').click(function(){
var selected_locations;
var loc_id = $('.a').val();
alert(loc_id);
selected_locations.push(loc_id);
alert(selected_locations);
});
而且HTML
:
<input type="text" name="a" class="a" value="1" />
<a href="#" class="cl">Click</a>
但是,當我點擊鏈接,但它顯示的loc_id
值,此後不會發出警報,即數組selected_locations
的值。怎麼了 ?
你可以把不確定的變量東西;) –