简体   繁体   中英

JavaScript multiply two ids

I am trying to multiply two values that script get from below two different api. I am using document.getelementbyid to get the two id that I need which is gbp and balance. The api script can display the data get from api. However, the multiply script is not working. Nothing is showing. Help please?

first api

 $(function() {
    $.ajax({
    type: "GET",
    url: "https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=ETH,GBP,HKD",
    dataType: "json",
    success: function (data) {
        console.log(typeof data); 
        var json = data;
        $('#gbp').html(json.GBP);
        $('#hkd').html(json.HKD);
    }
    });
    });  

second api

$(function() {
$.ajax({
type: "GET",
url: "https://api.nanopool.org/v1/eth/reportedhashrate/1",
dataType: "json",
success: function (data) {
    console.log(typeof data); // -- Object
    var json = data;
    $('#balance').html(json.data);
}
});
});

multiply javascript:

 $(function () {
        "use strict";
        var $butbut =document.getElementById('gbp').html;
        var $siksik =document.getElementById('balance').html;
        var $lamlam =  $butbut * $siksik;
        document.getElementById('money').html=$lamlam;
    });

html script

<!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script src="Untitled-4.js"></script>

    </head>

    <body>

    <div id="balance"></div>

    <div id="money"></div>
    <div id="gbp"></div>


    </body>
    </html>

Getting the inner html of an element is .innerHTML , not .html

var $butbut = document.getElementById('gbp').innerHTML;
var $siksik = document.getElementById('balance').innerHTML;
document.getElementById('money').innerHTML = $lamlam;

Alternatively, you can use jquery

var $butbut = $('#gpb').html();
var $siksik = $('#balance').html();
$('#money').html($lamlam);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM