== ,是否等於
> ,大於
>= ,大於等於
< ,小於
<= ,小於等於
!= ,不等於
範例:
var a =10;
document.write("a是否等於50:" );
if(a==50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
document.write("a是否大於50:" );
if(a>50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
document.write("a是否小於50:" );
if(a<50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
document.write("a是否大於等於50:" );
if(a>=50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
document.write("a是否小於等於50:" );
if(a<=50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
document.write("a是否不等於50:" );
if(a!=50){
document.write("是" );
}else{
document.write("否" );
}
document.write("<br>" );
結果:
- 首頁
- JAVA 目錄
- JAVA WEB 目錄
- JAVA 其他未分類 目錄
- Grails目錄
- jQuery 目錄
- Apache 目錄
- JavaScript 目錄
- Spring + Hibernate 目錄
- Hibernate 目錄
- Linux 目錄
- 程式開發工具目錄
- MySQL 目錄
- PHP目錄
- C/C++ 目錄
- Google App Engine 目錄
- HTML5/CSS3
- 程式開發基本資訊
- Android
- Oracle 目錄
- Struts 目錄
留言列表