2010-02-19 5 views

risposta

39

questo dovrebbe funzionare (testato in Firefox e Google Chrome):

var arrayOfLines = $('#textAreaID').val().split('\n'); 
+3

Dovrebbe essere '$ ('# textArea'). Val(). Split ('\ n')', l'oggetto jQuery non ha una proprietà 'value'. – CMS

+0

@CMS - o anche $ ('# textArea') [0] .value.split ('\ n') :) –

+0

@CMS: Spiacenti. Grazie per averlo notato –

8
var stringArray = document.getElementById('textarea').value.split('\n'); 
0

si potrebbe provare questa funzione:

function textToArray(){ 
    var someArray = [];  
    var nameList = $("#txtArea").val(); 

    $.each(nameList.split(/\n/), function (i, name) {  

     // empty string check 
     if(name != ""){ 

      someArray.push(name); 

     }   
}); 

preso da: CONVERT TEXTAREA CONTENT TO AN ARRAY USING JQUERY

5

Via multipiattaforma:

var area = document.getElementById("area");    
var lines = area.value.replace(/\r\n/g,"\n").split("\n");