Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.46 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Insert xml to <select>
  2. <Questions>
  3.  
  4.   <Question>
  5.      <Id>1</Id>
  6.      <Text>aaa</Text>
  7.      <Reserver />
  8.   </Question>
  9.  
  10.   <Question>
  11.     <Id>2</Id>
  12.     <Text>bbb</Text>
  13.     <Reserver />
  14.   </Question>
  15.  
  16. </Questions>
  17.        
  18. $(doc).find("Questions").each(function()
  19. {
  20.   $('#s').
  21.   append( $("<option></option>").
  22.           attr("value",$(this).find('Text').text()).
  23.           text($(this).find('Text').text()));
  24.  
  25. });
  26.        
  27. <select id="s">
  28.      <option></option>
  29.  </select>