jQuery each line in textarea

后端 未结 4 1682
别跟我提以往
别跟我提以往 2021-02-20 12:17

html



jquery

4条回答
  •  借酒劲吻你
    2021-02-20 12:52

    Inside .each loop line id 'item' object, not 'this'.

    
      
      $('#btn').click(function(){
          var arrayOfLines = $('#gps').val().split('\n');
          $.each(arrayOfLines, function(index, item) {
              console.log('here is line:', item);         
          });
      });
    

提交回复
热议问题