我遇到了一些實驗性問題。大概只有jQuery的大師可以幫助我在這裏:)通過jQuery將段落中的所有更長的單詞轉換爲鏈接
我有一個段落:
<p>Lorem Ipsum is simply dummy text of the printing
and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and
scrambled it to make a type specimen book.</p>
,我需要轉換所有的話至少4個字符「上即時」的onMouseOver用jQuery幫助從每個詞創建的鏈接。
我不希望它生成的HTML(因爲帶寬的,它會增長到兆),該代碼將看起來像:
<p>
<a href="https://stackoverflow.com/search?q=Lorem">Lorem</a>
<a href="https://stackoverflow.com/search?q=Ipsum">Ipsum</a>
is
<a href="https://stackoverflow.com/search?q=simply">simply</a>
.........
</p>
我的onMouseOver也明白任何文字修飾。
我試過的東西:$( '#文本> P')綁定( '的mouseenter',callFunction);和.children()選擇器,但它沒有奏效。 – Gabriel
如果我不能解決,我必須使用這個doubleclick演示: http://jsfiddle.net/oscarj24/5D4d3/ – Gabriel