0
我有很多的選項標籤的,我想這些標籤的內容,並在表中顯示。我認爲這是可能的,我只是不知道如何。
例如
<option value="not this part">i want this part</option>
我有很多的選項標籤的,我想這些標籤的內容,並在表中顯示。我認爲這是可能的,我只是不知道如何。
例如
<option value="not this part">i want this part</option>
你可以通過Javascript實現這一點。
僞代碼:
var options = document.getElementByTagName("options") //this will get all options
或使用
var option = document.getElementByID("dropdown").options
迭代通過選項和動態內容添加到表。 您可以參考http://www.codeproject.com/KB/HTML/html.aspx來獲得動態添加行的幫助。
沒關係我找到了更好的方法,因爲我要將選項標記的內容插入到mysql中,我編輯了html並將其製作爲xml。所以現在應該很容易... – amir 2011-04-29 12:57:16