簡體   English   中英

if 語句同時執行 if 和 else

[英]If statement executing both if and else

我正在構建一個 web 應用程序,它將加侖轉換為升,反之亦然。 有一個文本框來輸入加侖/升,用戶也可以在單選按鈕上選擇他們想要轉換的內容。 現在在驗證輸入時出現問題:對於升,它必須大於 0 但小於 1000 ,對於加侖,它必須大於 0 但小於 4000 因此,如果我選擇了升,它必須只驗證升,但兩個驗證都會出現。 這是我的代碼:

表格

<body onload="setup()">
  <div data-role="page">
    <div style="padding: 20px;">
      <div data-role="fieldcontain">
        <input type="number" id="temperature" name="temperature">
        <label id="label">Gallons</label>
      </div>
      <fieldset data-role="controlgroup">
        <legend>Convert to:</legend>
        <input type="radio" name="units" id="Gallons" value="Gallons"
        onclick="setUnits('Liters')">
        <label for="Gallons">Gallons</label>
        <input type="radio" name="units" id="Liters" value="Liters"
        checked="checked" onclick="setUnits('Gallons')">
        <label for="Liters">Liters</label>
      </fieldset>
      <input type="button" onclick="convert()" value="Convert">
      <p id="answer"></p>
    </div>
  </div>
</body>

JavaScript

function setup() 
{
    var cType;
    setUnits("Gallons");
    cType = "Gallons"; 
  
  document.getElementById("Gallons").onclick =
    function () {
        cType="";
        cType="Liters";
      setUnits("Liters");  
      
    CheckInput(cType);
    };
    

 document.getElementById("Liters").onclick =
    function () {
        cType="";
        cType="Gallons";
      setUnits("Gallons");
        
    CheckInput(cType);
    };
    
    
CheckInput(cType);
}

function setUnits(unit) {
  var label = document.getElementById("label");
  label.innerHTML = unit;
}



function CheckInput(cType) {
    var CheckInputcType= cType;
    
 var angleInput = document.getElementById("temperature");
    
    if(CheckInputcType.localeCompare("Gallons")==0)
    {       
       angleInput.addEventListener("blur",validateG);
    
    }
    else(CheckInputcType.localeCompare("Liters")==0)
    {
        angleInput.addEventListener("blur",validateL);
    }
  
}


function validateL(){
    
    var angleInput = document.getElementById("temperature");
    
  if (angleInput.value >= 1000 || angleInput.value<=0) 
  {
    alert('Liters must be between 0 and 1000');
    angleInput.value = "";
  }
}

function validateG() {
  var angleInput = document.getElementById("temperature");
   
  if (angleInput.value >= 4000 || angleInput.value<=0) 
{
    alert('Gallons must be between 0 and 4000');
    angleInput.value = "";
 }
}

您的方法 CheckInput(cType) 有問題,因為每次單擊 Galons 或 liters 單選按鈕時,您都會在溫度輸入上添加一個新的偵聽器事件。 只需簡單地創建一個偵聽器並在該驗證器方法上驗證無線電 state。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM