我正在使用textarea接受用户输入。并想逐行阅读。
但是它什么也没显示
我想用逗号分隔列表中不同行的文本

JS:

$('input[type=button]').click( function() {
    string = document.getElementById("hi").val();
    alert(string);
    var html="";
    var lines = $('#id').val().split('\n');
    for(var i = 0;i < lines.length;i++){
        //code here using lines[i] which will give you each line
        html+=lines[i];
        html+=",";
    }
    $("#inthis").html(string);
});

HTML:
<textarea id="hi" name="Text1" cols="40" rows="5" placeholder="enter one wdg in one line" ></textarea>

<input type="button" value="test" />
<div id="inthis"></div>

这是jsfiddle:

http://jsfiddle.net/pUeue/1077/

最佳答案

这是更新的js ...

Demo Fiddle

$('input[type=button]').click(function () {
    var html = "";
    var lines = $('#hi').val().split('\n');
    for (var i = 0; i < lines.length; i++) {
        //code here using lines[i] which will give you each line
        html += lines[i];
        html += ",";
    }
    html = html.substring(0,html.length-1);
    $("#inthis").html(html);
});

关于javascript - 逐行阅读textarea中的文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19422717/

10-14 02:41