是否可以在頁面中獲取選定文本的父元素?例如:獲取選定文本的父元素
<div class="someparent">
Selection of this text should refer to the 'someparent' class.
<span class="spanparent">If this is selected, the parent should be this span</span>
</div>
由於越來越選定文本時,一般得到它從窗口或文檔(取決於瀏覽器),但它是有可能得到所選文本的父元素?
你能改一下,我已經在Safari OSX測試。當你需要時,我無法接受。 – Sgoettschkes
如果你希望在選擇spanparent中的文本時獲得div,你可以使用$('span.spanparent')。select(function(){$(this).parent(); ...}); – Sgoettschkes
@Boo:這應該是一個答案:) –