Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
441 views
in Technique[技术] by (71.8m points)

javascript - 在文本区域内创建多级列表(Creating Multi level lists within Text Area)

I am currently trying to auto create bullet points in a tree hierarchy formation where when you press tab you would go to the sub point of the main point.

(我目前正在尝试以树状层次结构自动创建项目符号点,当您按Tab键时,您将转到主要点的子点。)

However, I am slightly unsure of what next stage I would take after the main bullet points.

(但是,我不太确定在主要要点之后下一步将做什么。)

A help would be really appreciated.

(一个帮助将不胜感激。)

 function list(){
  const ul = document.getElementById("ul");
  const li = document.createElement("li");
  ul.appendChild(li);
}

<textarea cols = "10" rows = "10" class="editor" id="ul" draggable="true" onfocus="list()" style="font-weight:normal">

  ask by Emre Karayalcin translate from so


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...