0
懸停功能適用於顯示警報.... 但我無法顯示追加與跨度標籤的文本.... 不知道什麼發生的事情與它... 提供下面我的代碼.....懸停功能工作警報但不能追加跨度標籤
$('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>
請點擊TidyUp按鈕並按照說明清理您的小提琴。一團糟。 – isherwood 2013-03-13 01:33:56
它附加***範圍。在IE 8中檢查它。我甚至沒有看到Chrome中的懸停文本。你使用什麼瀏覽器? – hop 2013-03-13 01:37:00
我使用的是Chrome瀏覽器 – user2045025 2013-03-13 01:46:32