我使用greasmonkey腳本將特定頁面中的貨幣轉換爲使用API的INR。 我能夠獲得美元兌印度盧比的當前貨幣匯率,也能夠將貨幣符號替換爲印度盧比,但不能將貨幣值轉換爲當前匯率。我正在使用以下腳本:greasemonkey貨幣轉換器
$(function(){
GM_xmlhttpRequest({
method: "GET",
url: "http://www.google.com/ig/calculator?hl=en&q=1usd=?inr",
onload: function(d){
d=JSON.stringify(eval("(" + d.responseText + ")"));
d=$.parseJSON(d);
p=Math.round(d.rhs.replace(/[^\d\.]/g, ''));
var replaced=$('body').html().replace(/\$(?:\s+)*(\d+\,\.)?/g, '₹$1');
$('body').html(replaced);
}
});
});
上述腳本將$ s的所有出現都替換爲Rs。在一個頁面,如:
$0.50, $1.00, $20.00, $200.00
到
₹0.50, ₹1.00, ₹20.00, ₹200.00
,但我想要的是貨幣轉換也與匯率這樣的:
₹29.5, ₹59, ₹1180, ₹11800
我沒有得到這個高達..
PLease help ..
**OR SOMEONE HAVE BETTER IDEA TO DO THIS CONVERSION. PLZ SUGGEST**
能否請你告訴一個鏈接到你所創建的Greasemonkey的腳本?此外,它是可定製的,並可以在任何網站上工作? –