Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1行の文字数を数えることはできますか?5 行の段落があるとします。各行の文字数を数えることは可能ですか。これまでに見つけたものはすべて、段落全体の文字数をカウントしています...
これはうまくいくはずです
var lines = $("yourDiv").text().split("\n"); $.each(lines, function(n, elem) { console.log(elem.length); });