如何在function(){...}内获取链接?

时间:2010-08-05 13:40:17

标签: jquery xhtml

我现在无法分享完整的代码。

这是jquery代码的一部分

$('#contentBox').hover(
                function() {
                    posi("5",768,"box.jpg","i need link here","some text here");
                }

我试过这个

$('#contentBox').hover(
                function() {
                    posi("5",768,"box.jpg","<a href='#'>i need link here</a>","some text here");
                }

和这个

$('#contentBox').hover(
                function() {
                    posi("5",768,"box.jpg","&lt;a href='#'&gt;i need link here&lt;/a&gt;","some text here");
                }

但两者都不起作用。

如何让链接在这里工作?

我的意思是我想将i need link here呈现为<a href='#'>i need link here</a>

1 个答案:

答案 0 :(得分:1)

我猜你必须重写posi函数才能使用.html()代替.text()

http://api.jquery.com/html/

但是只要你不共享你的posi()函数,这只是猜测。