我有這種HTML表單,它在輸入框中顯示了一些不切實際的數字。順便說一下,我在輸入框中獲得的數據來自數據庫。我想在輸入框中顯示一個「NA」而不是99999999.9999的值。我不知道是否有一條if語句可以幫助我解決這個問題。如何在HTML表單中的輸入框中顯示不同的值
<form id="new-inventory-item-form" action="#" formaction="process" data-ajax="false">
<h3> Assets</h3>
<div class="ui-block-a">
<label for="longitude">Longitude</label>
<input type="number" name="" id="longitude" value="9999999.99999999">
</div>
<div class="ui-block-b">
<label for="size">Latitude</label>
<input type="text" name="" id="latitude" value="9999999.99999999">
</div>
</form>
在什麼時候,你考慮的值是「不現實的」? –
你好,我想幫忙,但我不明白你需要什麼...你能更具體嗎? –
如果這是始終從數據庫中返回的數字,只需對其進行測試,如果爲true,則將其替換爲「N/A」。 – AlexGM