Calculating text width

后端 未结 22 1334
轻奢々
轻奢々 2020-11-22 03:36

I\'m trying to calculate text width using jQuery. I\'m not sure what, but I am definitely doing something wrong.

So, here is the code:

var c = $(\'.c         


        
22条回答
  •  无人及你
    2020-11-22 03:45

    This worked better for me:

    $.fn.textWidth = function(){
      var html_org = $(this).html();
      var html_calc = '' + html_org + '';
      $(this).html(html_calc);
      var width = $(this).find('span:first').width();
      $(this).html(html_org);
      return width;
    };
    

提交回复
热议问题