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.
jquery/javascriptから一度にオンラインで選択する機能または方法があるかどうか疑問に思っていました。<pre></pre>問題は、タグ内の要素でなければならないことです。
<pre></pre>
コードは次のようになります
コースグレードマーク サイエンス 70 50
スペースを確保したいので、一度に1行選択するのがいいと思います。
ここで私が持っているものを見てください。
var test = $('pre').html();
ありがとうございました。任意の入力用。
\n で分割できます:
var lines = $("pre").text().split("\n");
http://jsfiddle.net/9XscN/