在段落中写“£”时出错

时间:2016-08-08 13:34:43

标签: html symbols sign pound

我试图在一个简单的段落中加上表示价格的“£”符号。

但是,当文本出现在网页上时,每个“£”符号前面都有一个“”符号。

有人可以告知为什么会这样吗?

有关如何阻止这种情况发生的任何建议?请参阅下面的影响代码片段。

 $(document).ready(function(){

    $('.hideme').eq(0).css('margin-top',$(window).height());    
    $(window).scroll(function(){

      console.log($(window).scrollTop());
      console.log($(window).height());
      if($(window).scrollTop() >= $(window).height())
        $('.hideme').eq(0).css('margin-top',0);

      $('.hideme').each(function(i){

        var top_of_object = $(this).offset().top;
                var bottom_of_window = $(window).scrollTop() + $(window).height();
                if(bottom_of_window > top_of_object){
                    $(this).addClass('animated fadeInUp', 1000);
                }

            });

        });
    });

2 个答案:

答案 0 :(得分:2)

在头部添加元标记:

<meta charset="utf-8">

答案 1 :(得分:0)

这种情况经常发生在您使用的字体不在本地计算机上。

首先,请确保您使用的是网络安全字体。

其次,尝试输入您的“£”符号作为HTML代码:

&#163;