3
我有這樣的代碼:我如何引用變量值在HTML
<select name ="selected">
<option>
Option1
</option>
<option>
Option2
</option>
</select>
<input name = "text" type = "text" value = "The value of the selected value of the drop down list"/>
我如何引用的在文本的價值選擇價值?
你需要爲此使用JavaScript。 – TylerH
HTML是一種靜態語言。如果你需要,使用JavaScript。 – BenM
Ohkay thankx我會研究它! – MJ33