我該如何做這個工作?我在數組「第三個元素」中有一個空格「John」。jquery在數組中找到一個空格的字符串
看看: http://jsfiddle.net/hyHFT/
<style>
div { color:blue; }
span { color:red; }
</style>
<div>"John" found at <span></span></div>
<div>4 found at <span></span></div>
<div>"Karl" not found, so <span></span></div>
<script>var arr = [ 4, " Pete", 8, " John" ];
$("span:eq(0)").text(jQuery.inArray("John", arr));
$("span:eq(1)").text(jQuery.inArray(4, arr));
$("span:eq(2)").text(jQuery.inArray("Karl", arr));
</script>
感謝 格拉西亞斯! 埃爾龍舌蘭
是消除空間? – 2011-06-16 23:14:00