我有以下内容;
<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,
....
如何计算文字(单词)宽度?