如何拆分jquery中的字符串數組。 用於例如: -如何拆分jquery中的字符串數組
var input='a,b,c,d,e,f,g'
//i want to split in in array.
//check the condition that if input of elements > 3.
//then i need to remove the elements in array. then show the array like ex: output= 'a,b,c'
由於我是新來jQuery
請建議我一些jQuery函數來實現這一點。
開始通過檢查的JavaScript的劃分方法沒有jQuery的:http://www.w3schools.com/jsref/jsref_split.asp那麼也許張貼一些代碼與你堅持什麼 – gordatron 2013-05-13 09:37:41
''a,b,c,d,e,f,g'.split(',')';另見['String.split()'](https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/String/split) – 2013-05-13 09:37:43
先嚐試Google,而不想聽起來很刺耳,真的是JavaScript 101. – 2013-05-13 09:39:51