在网站上显示印度货币符号

在网站上显示印度货币符号

本文介绍了在网站上显示印度货币符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

印度货币卢比的象征于2010年7月15日获得联盟内阁的批准。



如何在网站上显示它?

解决方案

WebRupee是印度货币符号的Web API。它提供了一个简单的跨浏览器方法,用于在您的网页,博客或网络上的任何地方使用Rrupee符号。



以下是打印印度货币符号的方法:

 < html> 
< head>
< link rel =stylesheettype =text / csshref =http://cdn.webrupee.com/font>
< script src = http://cdn.webrupee.com/js type =text / javascript>< / script>
< / head>
< body>
卢比符号:< span class =WebRupee>卢比。< / span> 200

这意味着如果有人从您的网站复制文本并将其粘贴到其他地方,他会看到Rs和不是一些其他的或空白的字符。

您现在也可以使用新的Rupee unicode符号 - U + 20B9 INDIAN RUPEE SIGN。它可以以这种方式使用:

 < span class =WebRupee>&#x20B9;<跨度> 500 

只需包含以下脚本,即可更新所有Rs/Rs。为你:

 < script src =http://cdn.webrupee.com/jstype =text /的javascript>< /脚本> 


This symbol for the rupee, the currency of India, was approved by the Union Cabinet on 15 July 2010.

How can I display it on a website?

解决方案

WebRupee is a web API for the Indian currency symbol. It provides a simple, cross browser method for using the Rrupee symbol on your webpage, blog or anywhere on the web.

Here is a method for printing the Indian currency symbol:

<html>
<head>
    <link rel="stylesheet" type="text/css" href="http://cdn.webrupee.com/font">
    <script src=http://cdn.webrupee.com/js type="text/javascript"></script>
</head>
<body>
    Rupee Symbol: <span class="WebRupee">Rs.</span> 200

This means if somebody copies text from your site and pastes it somewhere else, he will see Rs and not some other or blank character.

You can now also use the new Rupee unicode symbol — U+20B9 INDIAN RUPEE SIGN. It can be used in this manner:

<span class="WebRupee">&#x20B9;</span> 500

Just include the following script and it will update all the "Rs" / "Rs." for you:

<script src="http://cdn.webrupee.com/js" type="text/javascript"></script>

这篇关于在网站上显示印度货币符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 04:46