我有这个小提琴:http: //jsfiddle.net/Uddaa/
目前它的作用是,当您单击文本时,它会在文本到该点时发出警报。我该怎么做才能使 html 达到这一点而不仅仅是文本?
JavaScript:
$(".content").on("click", function () {
getBefore();
});
function getBefore() {
var sel = document.getSelection();
var off = sel.anchorOffset;
var ran = sel.getRangeAt(0);
ran.setStart($(".content").get(0), 0);
alert(ran.toString());
}
HTML:
<div class="content">
<p><b>Click</b> anywhere <u>within <em>the</em> text</u> to to see the code up to that point.</p>
</div>