我想我的金額字段獲得總金額的轉換價值更新(金額我的意思是從所有複選框收到的金額總和選中)。例如,我有以下複選框。jquery貨幣兌換複選框點擊使用谷歌財經API
<input type="checkbox" value="10">
<input type="checkbox" value="20">
<input type="checkbox" value="30">
這些10,20和30(共60個)值以美元爲單位。我希望它被轉換成INR,並顯示在一個div中,如<div class="convertedAmount">Rs.0.00</div>
。對於轉換,我在這裏使用Google Finance API,如下所示。
<?php
$from_Currency = "USD";
$to_Currency = "INR";
$encode_amount = 1;
$get = file_get_contents("https://www.google.com/finance/converter?a=$encode_amount&from=$from_Currency&to=$to_Currency");
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
$converted_currency = preg_replace("/[^0-9\.]/", null, $get[0]);
echo $converted_currency;
?>
現在的問題是,我希望每次複選框被選中或取消選中使用jQuery的時候更新div值。但是我對jQuery手無力,所以我遇到了麻煩。如果有幫助,我將不勝感激。請幫幫我。
感謝,但我已經想出了一個解決方案,而無需使用AJAX ..一個簡單的jQuery爲我做:d –
也..你的代碼需要一定的時間來處理(近2秒),但只要點擊複選框就會處理一個.. –
關於未選中的「未選中」,您提到了在未選中某個框的情況下,您希望結果具有什麼樣的價值? – 2017-06-17 13:52:49