jQuery each line in textarea

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

html



jquery

4条回答
  •  不知归路
    2021-02-20 12:53

    You are placing a string into a jQuery object. Just use the item instead:

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

提交回复
热议问题