<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<script>
$(this).select(function(){
var a = $(this).prevUntil('p').html;
console.log(a);
});
</script>
<html>
<p>dfdsf
dsfdsf
<span>sdfdsfds</span><a >sdfdsfdsfdsf</a>sdfsdfdsfdsfds
fsd
f
ds
f
ds
fd</p>
</html>
カーソル選択位置から最初の親までのテキスト全体を選択する必要がありdiv
ますp
。