我显示一个可扩展的文本,当我点击它时,它会显示所有文本 当我再次点击时,它会缩小。 它工作正常。
但如果我在文本中有链接文字,那么就说www.google.com,我无法点击它。
这是生成的代码
<div class="messageWrapper">
<img src="webroot\img\cake.icon.png" alt="Smiley face" height="42" width="42">
<a href="/contest/users/view/11">toto2</a>
Test <a href="http://hotmail.com" rel=nofollow>http://hotmail.com</a> test on clickable text within clickable zone
</br></br>
</div>
有人有想法吗?
答案 0 :(得分:0)
我找到了解决方案,
我给了文本的每个网址区一个类,例如:
<a href="http://hotmail.com" class='insideLink' rel=nofollow>http://hotmail.com</a> test blablablab...
我在脚本中添加了以下jquery命令
$('.insideLink').click(function(event){
event.stopImmediatePropagation();
});