想知道是否有更好的方法在源代码中找到元素行号。
这是我到目前为止所做的:
// Get the item that the user is clicking on:
var focused = doc.getSelection().anchorNode;
if(focused.nodeType == 3){ // text node
focused = focused.parentNode;
}
// Get the entire page as a string
// NOTE: <!doctype> is not included in this!
var pageStr = doc.documentElement.outerHTML;
// Get the focused node's parent and
// find where it begins in the page.
var parentNodeStr = focused.outerHTML;
var parentNodeIndex = pageStr.indexOf(parentNodeStr);
// Find where the focused node begins in it's parent.
var focusedStr = focused.outerHTML;
var focusedIndex = parentNodeStr.indexOf(focusedStr);
// Now find where the focused node begins in the overall page.
var actualIndex = parentNodeIndex - focusedIndex;
// Grab the text above the focused node
// and count the number of lines.
var contentAbove = pageStr.substr(0, actualIndex);
var lineNumbers = contentAbove.split("\n").length;
console.log("lineCount", lineNumbers);
答案 0 :(得分:1)
这是我提出的更好的解决方案,希望这可以帮助那些使用Ace或CodeMirror并结合满足的人:
设置(适用于新手)
我们可以使用以下方式获取用户选择的位置:
var sel = document.getSelection();
选择的开头称为&#34;锚&#34; 并且结束被称为&#34;焦点&#34;。例如, 当你选择几个文字时,就有了 选择的开始和结束。
var anchorPoint = elementPointInCode(sel.anchorNode, sel.anchorOffset);
var focusPoint = elementPointInCode(sel.focusNode, sel.focusOffset);
由于HTML包含标签和可读文本,因此有一个 偏移。例如:
<p>abcdefgh</p>
// ...^
偏移量是文本节点字符串中的索引。 在我们的例子中,字母&#34; d&#34;被4个字符偏移 从&amp; gtp&amp; lt标签的入口点开始。 但偏移量基于零,因此偏移实际上是3。
我们使用以下方法获得偏移量:
var offset = sel.anchorOffset;
// -- or --
var offset = sel.focusOffset;
......取决于我们想要什么,结束的开始。
<强>功能强>
function elementPointInCode(element, offset) {
// There may or may not be an offset.
offset = offset || 0;
var node = element;
// Process first node because it'll more-than-likely be a text node.
// And we don't want to go matching text against any of the node HTML.
// e.g. <a href="page.html">page 1</a>
// where the text "page" sould match the "page" within the <a> attributes.
var strIndex;
var str;
// Bump text nodes up to parent
if(node.nodeType == 3) {
node = node.parentNode;
str = node.outerHTML;
strIndex = str.indexOf(">") + offset + 1;
} else {
strIndex = ;
}
// This will ultimately contain the HTML string of the root node.
var parentNodeStr = "";
while(node){
// Get the current node's HTML.
var str = node.outerHTML;
// Preemptively snag the parent
var parent = node.parentNode;
if(parent && str){
// The <html> root, we won't have a parent.
var outer = parent.outerHTML;
if(outer){
// Stash the node's HTML for post processing.
parentNodeStr = outer;
// Cumulatively count the offset's within each node
strIndex += parentNodeStr.indexOf( str );
}
}
// Work our way up to the root
node = parent;
}
// Chop the root HTML by our cumulative string index
var str = parentNodeStr.substr(0, strIndex);
var Astr = str.split("\n" );
return {
row : Astr.length,
col : Astr.pop().length
}
};