将不可编辑的行号实现到一组预标记中
我想要一组可编辑的 pre
标签,每个标签代表一行文本。该行应该以行号(不可编辑)开始,然后可以编辑。如果我执行 1
则 span
不可编辑,pre
可以编辑,但 pre
位于下一行。
如果我更改它,使 span
位于 pre
内 (
) 那么整个内容都是可编辑的,并且 1 出现在该行的中间,并带有奇怪的制表符缩进。1
如何获取 pre
行开头的行号?
I want a group of editable pre
tags, each one representing a line of text. The line should start off with the line number (uneditable) then be editable after that. If I do <span contentEditable="false">1 </span><pre contentEditable="true"></pre>
then the span
is uneditable and the pre
is editable, but the pre
is on the next line.
If I change it so the span
is within the pre
(<pre contentEditable="true"><span contentEditable="false">1 </span></pre>
) then the entire thing is editable, and the 1 shows up in the middle of the line with weird tabs indenting it.
How can I get line numbers at the beginning of the pre
line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的代码编辑器,无需 JavaScript。
http://jsfiddle.net/oswaldoacauan/tpY4Y/
Simple code editor, without javascript.
http://jsfiddle.net/oswaldoacauan/tpY4Y/