我有这张表:
<table>
<tr>
<th>Name</th>
<td>Paul Stevenson</td>
</tr>
<tr>
<th>Date</th>
<td>28. 09. 1978</td>
</tr>
</table>
我想在桌面上添加一些功能:
var toolbar = $("<div />").css({
"padding": "5px",
"background" : "#F8F8F8",
"position" : "absolute",
"borderRadius" : "5px",
})
var link = $("<a />").css({
"display" : "block",
"height" : "17px",
"width" : "17px",
"position" : "relative"}).on("click", function() {
$(this).animate({bottom: "-2px"}, 20 ).animate({bottom: "0"}, 20 );
});
这是工具栏和链接。工具栏应附加在鼠标输入上,并且其中有一个链接。
$('th').on("mouseenter mouseleave", function(e) {
if (e.type === 'mouseenter') { $(this).append( toolbar ); }
else { $(this).find( $("div") ).remove() }
});
toolbar.html( gmaps );
有更多类型的链接类型。我就这样做了
var gmaps = link.css({ "background" : "red",});
var google = link.css({"background" : "blue",});
如何添加更多链接类型?
toolbar.html( gmaps + google );
不起作用。这是codepen
答案 0 :(得分:1)
您需要对代码进行一些修改,如下所示:
1)通过$.clone()
创建多个链接对象,以避免覆盖相同的DOM元素,如:
var gmaps = link.clone().css({ "background" : "red",});
var google = link.clone().css({"background" : "blue",});
2)将这些链接添加到toolbar
;转到$.append()
函数调用,以便它将附加到同一容器的底部,如下所示:
toolbar.append( gmaps ).append( google );
请查看更新的codepen链接上的完整源代码: