我现在无法分享完整的代码。
这是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","<a href='#'>i need link here</a>","some text here");
}
但两者都不起作用。
如何让链接在这里工作?
我的意思是我想将i need link here
呈现为<a href='#'>i need link here</a>
答案 0 :(得分:1)