3
我正嘗試使用加速移動頁面(AMP)構建表單,並且需要根據用戶選擇隱藏或顯示輸入。有條件地隱藏或顯示輸入 - AMP
我有一個<select>
,用戶可以選擇國家:
<select name="country" id="country" required>
<option value="UK">United Kingdom</option>
<option value="ES">Spain</option>
</select>
而且,如果用戶選擇英國我想隱藏此輸入:
<input type="text" id="idcard" name="idcard">
<input type="text" id="mobile" name="mobile">
使用"on" attribute我已經嘗試在<option>
標籤內:
<option value="UK" on="tap:idcard.hide,mobile.hide">United Kingdom</option>
,但它不起作用,它只在<select>
標記上有效,即使documentation表示「所有元素」。
我需要使用<select>
和<option>
標籤,因爲有很多國家,而不僅僅是2個,否則使用無線電輸入「on」屬性將起作用。
是否有任何種類的觸發器或事件可以用來隱藏或顯示基於用戶選擇的輸入?
希望任何人都可以幫忙!謝謝!
非常感謝您rodders!它工作完美 –