表情符号标志在html中没有显示全彩色

时间:2018-03-05 17:06:15

标签: javascript html emoji



// Getting the country code and name from the user's IP
$.get("https://api.ipdata.co", function (response) {
    $("#flag").html(response.emoji_flag + ' ' + response.country_name);
}, "jsonp");

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<pre id="response">
    <div id="flag"></div>
</pre>
&#13;
&#13;
&#13;

我看到的是

enter image description here

我在Ubuntu上使用Chrome,以前能够在其他网站上看到全彩色表情符号。

以上打印我们的旗帜的两个字母,但我想显示全彩旗。

enter image description here

我该怎么做?

0 个答案:

没有答案