조건을 작동 시키려고하지만 구문에 대한 확신이 없습니다 ...자바 스크립트 조건 구문
jquery/javascript에서 어떻게 작성합니까?
if (value.type) == 'football' then {
//do something
} else {
//do something else
}
조건을 작동 시키려고하지만 구문에 대한 확신이 없습니다 ...자바 스크립트 조건 구문
jquery/javascript에서 어떻게 작성합니까?
if (value.type) == 'football' then {
//do something
} else {
//do something else
}
if ((value.type) == 'football') {
//do something
}
else {
//do something else
}
or
if (condition) {
//do something
}
else if(condition) {
//do something else
}
else {
//do something else
}
JS
if (value.type === 'football')
{
//Do something
}
else
{
//Do something else
}
또는
message = ('value.type' === 'football') ? "type is equal to football" : "type is not equal to football";
jQuery를 그냥 JS 라이브러리이며 원인 다른 구현이 정말 필요하지 않은 경우가없는 짧은 경우는 사용할 수 있습니다.
희망 하시겠습니까?