weatherForecast.jsp
上传用户:shen332233
上传日期:2021-09-03
资源大小:7478k
文件大小:1k
源码类别:

Ajax

开发平台:

Java

  1. <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
  2. <div id="root" style="left:20px; top:20px;">
  3.     <div id="handle">
  4.             
  5.         <table width="100%" border="0" class="textbox">
  6.             <tr>
  7.                 <td align="left" class="controls">
  8.                     <span id="forecastLocation">
  9.                         <%@ include file="weatherLocation.jsp" %>
  10.                     </span>
  11.                 </td>
  12.                 <td align="right">
  13.                     <a class="controls" href="javascript:minimize('weatherContent');">
  14.                         -
  15.                     </a>
  16.                     &nbsp;
  17.                     <a class="controls" href="javascript:maximize('weatherContent');">
  18.                         +
  19.                     </a>
  20.                 </td>
  21.             </tr>
  22.         </table>
  23.     </div>
  24.     
  25.     <div class="normalText">
  26.         Zip Code: 
  27.         <input type="text" name="forecastZipCode" id="forecastZipCode" 
  28.             onkeyup="handleZipCodeChange();" class="normalText" 
  29.             value="<%=ajaxdashboard.Constants.DEFAULT_WEATHER_ZIP_CODE%>"/>
  30.             
  31.     </div>
  32.     
  33.     <div id="weatherContent">
  34.        <%@ include file="weatherTable.jsp" %>
  35.     </div>
  36. </div>