0

我有要在 HTML 中显示的文本,例如: var htmlStr = "1.first thing %10-15%. 2.second thing %25-44%. 3.third"

我在 div 中显示它:

  $('#div1').html(htmlStr);

但是当我在手机上显示它时,DIV1HTML5得到了下一件事:

1.first thing %10-15.2%.second thing %25-44.3%.third 

(错误是:15% - 15.2%)

它发生在iOS系统中,我如何JavaScrip/jQuery根据这个规则使用修复它?

4

1 回答 1

0

尝试使用%而不是%.

于 2012-11-29T00:13:31.617 回答