js定义函数
发布网友
发布时间:2022-04-25 14:45
我来回答
共2个回答
热心网友
时间:2022-05-14 21:28
//函数的写法,function是定义函数的关键字
function method(){
var test=false;//初始化
if ($('#manufacturename').val() == 'undefined') {
test = true;
} else {
test = false;
}
}
//如果加载时就运行,不需要函数,就直接在<script>节点中写,即把function这层去掉
热心网友
时间:2022-05-14 22:46
var test;
if ($('#manufacturename').val() == 'undefined') {
test = true;
} else {
test = false;
}