标签: javascript
我想将光标聚焦到特定的行。我正在使用此代码获取行号
taid=document.getElementById(element); line = taid.value.substr(0, taid.selectionStart).split("\n").length;
taid=document.getElementById(element);
line = taid.value.substr(0, taid.selectionStart).split("\n").length;
谢谢。