1. 程式人生 > >js中判斷字串相等使用==

js中判斷字串相等使用==

在 javaScript或者jQuery中字串比較沒有equals()方法,要比較兩個字串是否相等可以直接用==或者is()進行判斷。

一段老的js程式碼示例:

var items = document.getElementById("PDStatus").options;
  	if("1"==(<%=checkOut.getFILLER1().substring(10)%>) ){
  		items[1].selected =true;
  	}else if("2"==(<%=checkOut.getFILLER1().substring(10)%>)){
  		items[
2].selected =true; }else if("3"==(<%=checkOut.getFILLER1().substring(10)%>)){ items[3].selected =true; }else{ items[0].selected =true; }