-1

Is this jQuery, or JavaScript? My assignment disallows the use of jQuery.

function calculateTotal() {
    var collection = document.getElementsByName('deliveryType'),
        cds = document.getElementsByName('cd[]'),
        cdTotal = 0,
        L = collection.length;

    while(L--) {
        if(collection[L].checked) {   // get shipping costs
            collection = Number(collection[L].getAttribute('title')); 
            break;
        }
    }

    L = cds.length;
    while(L--) {
        if(cds[L].checked) {    //add total prices
            cdTotal += Number(cds[L].getAttribute('title'));
        }
    }

    //  output total
    document.getElementById('total').value = collection + cdTotal;
}
4

2 回答 2

2

只是 JavaScript。如果您使用 JQuery,您会看到一个美元符号“$”或“JQuery”关键字。阅读有关 API 文档的更多信息:http: //api.jquery.com/jQuery/

于 2013-04-21T22:25:08.463 回答
2

这是纯 javascript - 如果您不确定,请在某处寻找包含 jQuery 的内容。它通常看起来像这样:

<script type="text/javascript" src="jquery.js"></script>

F12您还可以通过在浏览器中按来检查加载了哪些资源。

于 2013-04-21T22:26:40.613 回答