初学者提出有关向函数添加变量的问题:
加入金额:
var calcdiscount = function () {
var test = $('#discount').val();
if (test.length > 0 && $('#discount')[0].checkValidity()) {
PizzaSizeCost(2);
}
else {
PizzaSizeCost(0);
}
}
;
了解金额:
var PizzaSizeCost = function (test) {
我该怎么做?
答案 0 :(得分:2)
function
使用return
来向调用者返回值。所以:
function testValue(value) {
if (value < 100) {
return "Small";
} else {
return "Large";
}
}
var example = testValue(75);
// Now example = "Small"
var secondExample = testValue(125);
// secondExample = "Large"