动态生成jQuery Tooltip不显示

时间:2018-04-19 07:34:14

标签: javascript jquery tooltip jquery-ui-tooltip

我们的想法是创建一个图像列表,每个图像都带有一个包含更大图像的自定义工具提示。 这里有一个部分“工作”的样本(工具提示出现在悬停但是添加了128px图像,为什么?

http://jsfiddle.net/xpvt214o/157904/

for(idx = 0; idx < 2; idx++){
    var tmpImg = $('<img>')
        .attr('src', 'https://www.seoclerk.com/pics/551103-1TOqFD1502285018.jpg')
        .attr('id', idx)
        .attr('title', '')
        .width('32px')
        .height('32px');
    var tmpDivCard = $('<div>')
        .css('position', 'absolute')
        .css('left', 40*idx)
        .css('top', 50)
        .css('zIndex', '1')
        .append(tmpImg); 
    tmpImg.tooltip({ content: '<img src="https://www.seoclerk.com/pics/551103-1TOqFD1502285018.jpg" 			style="width:128px;height:128px;"/>' });
       $('#map_area').append(tmpDivCard);
    }
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://code.jquery.com/ui/jquery-ui-git.js"></script>

<div style="">
    <div id="map_area">
        
    </div>
</div>

我的问题是以下代码根本没有显示工具提示,尽管图像在那里。

document.addEventListener('DOMContentLoaded', setProfileCards);

function setProfileCards() {
    //debugger;
    var profileCards = (@Html.Raw(Session["profileCards"] as string));
    profileCards.forEach(function (profileCard) {
        var areaName = profileCard.Place.replace(/\./g, '');
        var _elementArea = $("area[id='" + areaName + "']");
        var _elementHTML = $("area[id='" + areaName + "']")[0];

        if (profileCard.Place.startsWith('3.1')) {
            //
            var tmpImg = $('<img title="">')
                .addClass('rounded-circle')
                .attr('src', profileCard.ProfilePic)
                //.attr('id', areaName)
                //.attr('alt', '')
                //.attr('title', profileCard.Name)
                .attr('title', '')
                .width('32px')
                .height('32px');
            tmpImg.click(function (e) {
                _elementArea.trigger('click');
            });

            var left = (parseInt(_elementHTML.coords.split(',')[2]) + parseInt(_elementHTML.coords.split(',')[0])) / 2;
            var top = (parseInt(_elementHTML.coords.split(',')[3]) + parseInt(_elementHTML.coords.split(',')[1])) / 2;
            var tmpDivCard = $('<div>')
                    .css('position', 'absolute')
                    .css('left', left)
                    .css('top', parseInt(_elementHTML.coords.split(',')[3]))
                    .css('zIndex', '1')
                .append(tmpImg);
            tmpImg.tooltip({ content: '<img src="' + profileCard.ProfilePic + '" style="width:128px;height:128px;"/>' });
            $('#map_area').append(tmpDivCard);
        }
    });
}

1 个答案:

答案 0 :(得分:1)

主要问题是。您需要包含jquery-ui

中的css
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.css" />

我看到你为图片style="width:128px;height:128px;"设置了样式?

查看小提琴http://jsfiddle.net/xpvt214o/158120/