Jquery工具提示图像高度&宽度

Jquery Tooltip image height & width

本文关键字:宽度 高度 图像 工具提示 Jquery      更新时间:2023-09-26

我有这个工具提示代码作为一个魅力,但我想知道我如何设置最大高度&宽度。下面是我的代码片段:

<script type="text/javascript">
    $(document).ready(function () {        
        $('.hoverElement').each(function () {
            var id = $(this).attr('id');
            $(this).tooltip({ content: '<img src="@Url.Action("ShowImage")' + '?email=' + id + '" />' });
        });
    });
</script>
foreach (var item in Model.People)
{
<a class="hoverElement" href="#" title="" id="@item.Email" >@item.Name()</a>
}

您是否尝试在创建元素时添加内联样式?像这样:

content: '<img style="max-height:100px;" src="@Url.Action("ShowImage")' + '?email=' + id + '" />'