这是jQuery还是JavaScript?我的任务不允许使用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;
}
答案 0 :(得分:2)
只是JavaScript。如果你使用的是JQuery,你会看到一个美元符号'$'或'JQuery'关键字。阅读API文档:http://api.jquery.com/jQuery/
答案 1 :(得分:2)
这是纯粹的javascript - 如果你不确定只是想在某个地方包含jQuery。通常看起来像这样:
<script type="text/javascript" src="jquery.js"></script>
您还可以在浏览器中按 F12 查看已加载的资源。