悬停功能适用于显示警报....但我无法显示带有 span 标签的附加文本....不知道它发生了什么...在下面提供我的代码.....
$('document').ready(function () {
window.setTimeout(function () {
$('.cubeCell').each(function () {
var htmlText = $(this).attr('data-text');
$(this).append('<div class="cubeTextStyle">' + htmlText + '</div>');
$(this).hover(
function () {
//alert("123");
$(this).append($("<span> ***</span>"));
},
function () {
$(this).find("span:last").remove();
});
});
}, 600);
});
<div class="cubeCell"
data-text="hover here"
class="desktopContactImage cubeCell"
data-caption="<a style='padding-left: 40px; font-size: 14px; color: grey;' href='/Inventory/Partnumber/?ps=list' >Register</a> <div> <a style='padding-left: 40px; font-size: 14px; color: grey;' href='/Bom/Bom/?ps=list' >Demo</a> </div> <a style='padding-left: 40px; font-size: 14px; color: grey;' >Reports</a>"
data-image="http://intra.defie.co/images/Desktop_icons_02.07.13/guest.png"
></div>