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
我想保留空间,我相信一次选择一条线会很棒。
这里看看我有什么,不多
var test = $('pre').html();
谢谢你。对于任何输入。
您可以在 \n 上拆分:
var lines = $("pre").text().split("\n");
http://jsfiddle.net/9XscN/