admin管理员组文章数量:1350033
I am using textarea to take user input. and want to read line by line. But it's not displaying anything I want to make a ma seperated list of the text in different lines
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>
Here is the jsfiddle:
/
I am using textarea to take user input. and want to read line by line. But it's not displaying anything I want to make a ma seperated list of the text in different lines
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>
Here is the jsfiddle:
http://jsfiddle/pUeue/1077/
Share Improve this question edited Oct 17, 2013 at 9:55 Panos Bariamis 4,6617 gold badges39 silver badges62 bronze badges asked Oct 17, 2013 at 9:20 ALBIALBI 7213 gold badges16 silver badges34 bronze badges8 Answers
Reset to default 5Here's updated 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);
});
Firstly you have a confused mix of native javascript and jQuery code in your example. A native DOM element has no val()
method for example, that's jQuery. Secondly, you could massively simplify your code by just using split()
and join(',')
. Try this:
$('input[type=button]').click( function() {
var string = $("#hi").val().split('\n').join(',');
$("#inthis").html(string);
});
Example fiddle
Change:
string = document.getElementById("hi").val();
TO
string = document.getElementById("hi").value;
jsfiddle
http://jsfiddle/pUeue/1085/
$('input[type=button]').click( function() {
string = $(document.getElementById("hi")).val();
alert(string);
var htmlD="";
var lines = string.split('\n');
for(var i = 0;i < lines.length;i++){
//code here using lines[i] which will give you each line
htmlD+=lines[i];
htmlD+=",";
}
$("#inthis").html(htmlD);
});
I have corrected your code here: http://jsfiddle/pUeue/1080/.
$('input[type=button]').click( function() {
string = $("#hi").val();
alert(string);
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+=",";
}
$("#inthis").html(html);
});
try this
$('input[type=button]').click( function() {
var lines = $('#hi').val().split(/\n/);
$("#inthis").html(lines.join(","));
});
there is mistake in second line u have used jQuery val instead of value so try below:-
string = document.getElementById("hi").value;
and need to put the below line before you load the string in div.:-
html = html.substring(0,html.length-1);
.val()
is a Jquery function, you will have to convert the DOM element to jquery obj or use .value
$('input[type=button]').click(function () {
string = $(document.getElementById("hi")).val();
string = string.replace("\n", ",")
$("#inthis").html(string);
});
http://jsfiddle/pUeue/1090/
本文标签: javascriptReading text in textarea line by lineStack Overflow
版权声明:本文标题:javascript - Reading text in textarea line by line - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872176a2553675.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论