icon.js 556 B

1234567891011121314
  1. function icon_get_init() {
  2. $('#content').html('');
  3. $('#result').html('');
  4. var str = '<table border="1" width="100%">';
  5. str += '<tr><td colspan="2"><a href="#" id="get">get</a></td></tr>';
  6. str += '<tr><td>name:</td><td><input type="text" id="name" style="width:95%" ></td></tr>';
  7. str += '<tr><td>icon:</td><td id="iconArea">&nbsp;</td></tr>';
  8. str += '</table>';
  9. $('#content').html(str);
  10. $('#get').click(function() {
  11. var url = '../servlet/icon/' + $('#name').val();
  12. $('#iconArea').html('<img src="'+url+'"/>');
  13. });
  14. }