jQuery如何在px中获得段落的宽度?

时间:2018-06-18 11:35:59

标签: jquery width pnotify

我有以下内容;

<div class="pin">
<p class="pin-text hidden">text</p>
</div>

和JS:

form.on('mouseover', '.pin', function(e) {
    var id = this.id;
    if($('#' + id).children('p.pin-text').length) {
        pin_text_width = ($('#' + id).children('p.pin-text').parent().width()).toString() + 'px';
        pin_text = $('#' + id).children('p.pin-text').text();
    }
});

我需要找到段落的文字宽度,以便调整宽度可变的PNotify工具提示:

tooltip = new PNotify({
    text: pin_text,
    width: pin_text_width,
    ....

如何计算文字(单词)宽度?

1 个答案:

答案 0 :(得分:0)

尝试使用jQuery width。例如:

#if