gpt4 book ai didi

javascript - 如何使用 Vanilla JS 根据文本编辑器框中的行动态显示装订线中的行号?

转载 作者:行者123 更新时间:2023-12-01 03:54:33 24 4
gpt4 key购买 nike

我需要仅使用 vanilla JS 在应用程序的侧栏中打印出准确的行号。

当在可编辑文本区域添加和删除行时,行号必须自动增加和减少。

目前它正在创建新的 DIV,但新的 <code>标签会很壮观。不幸的是<code>标签在同一行上打印,而不是垂直递增。

我当前的代码如下所示:

html:

<div class="textBox" contenteditable>
<code>
This div can be edited in browsers that support HTML5.
</code>
<code>
Please edit this text and add more lines to see what needs to happen.
</code>
</div>

JS:

  let totalLines = 1;
function updateGutter(allLines) {
const toAdd = document.createDocumentFragment();

for (let i = 0; i < allLines;) {
i += 1;
const newDiv = document.createElement('div');
newDiv.id = 'r' + i;
newDiv.className = 'ansbox';
newDiv.innerHTML = `${i}.`;
toAdd.appendChild(newDiv);
document.getElementsByClassName('gutter')[0].appendChild(toAdd);
}
}

function unEqual(linesTotal) {
if (linesTotal !== totalLines) {
totalLines = linesTotal;
updateGutter(totalLines);
}
}

const getLength = function getLength(element) {
const linesTotal = element.querySelectorAll('div').length + 1;
unEqual(linesTotal);
};

const box = document.querySelector('.textBox');
box.addEventListener('keyup', function() {
getLength(box);
});

但它创建的输出如下所示: enter image description here

我希望这更具解释性。 :-) * 另外还有更新的 FIDDLE https://jsfiddle.net/Tranq/heyaxtd5/4/ *

最佳答案

使用一些CSS Counters怎么样?魔法?

工作 fiddle :https://jsfiddle.net/heyaxtd5/2/

CSS:

pre
{
counter-reset: thecodenumbering;
}

code
{
counter-increment: thecodenumbering;
}
code:before
{
padding-right:5px;
content: counter(thecodenumbering);
}

HTML:

<pre>
<code>A line of code</code>
<code>A line of code</code>
<code>A line of code</code>
<code>A line of code</code>
<code>A line of code</code>
</pre>

更新:

改变了一点你的JS,它似乎工作:https://jsfiddle.net/heyaxtd5/5/

关于javascript - 如何使用 Vanilla JS 根据文本编辑器框中的行动态显示装订线中的行号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42877980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com