⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html-radio.jsp

📁 strust 框架 的源程序以及java类源代码
💻 JSP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ page language="java"%>
<%@ taglib uri="/WEB-INF/struts-bean-el.tld" prefix="bean-el" %>
<%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
<%@ taglib uri="/WEB-INF/struts-logic-el.tld" prefix="logic-el" %>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
<html-el:html>
 <head>
  <title>Test html-el:radio Tag</title>
 </head>
 <body bgcolor="white">

  <div align="center">
   <h1>Test struts html-el:radio Tag</h1>
  </div>

  <html-el:form action="html-radio.do">
   <table>
    <tr>
     <td>
      <html-el:radio property="stringProperty" value="flagOne"
                     title="Flag One" tabindex="3" accesskey="1"
                     disabled="${!empty pageScope}"/>
     </td>
     <td>flag one</td>
    </tr>
    <tr>
     <td>
      <html-el:radio property="stringProperty" value="flagTwo"
                     title="Flag Two" tabindex="2" accesskey="2"/>
     </td>
     <td>flag two</td>
    </tr>
    <tr>
     <td>
      <html-el:radio property="stringProperty" value="flagThree"
                     title="Flag Three" tabindex="1" accesskey="3"
                     onblur="showevent(event)"
                     onchange="showevent(event)"
                     onclick="showevent(event)"
                     ondblclick="showevent(event)"
                     onfocus="showevent(event)"
                     onkeydown="showevent(event)"
                     onkeypress="showevent(event)"
                     onkeyup="showevent(event)"
                     onmousedown="showevent(event)"
                     onmousemove="showevent(event)"
                     onmouseout="showevent(event)"
                     onmouseover="showevent(event)"
                     onmouseup="showevent(event)"
      />
     </td>
     <td>flag three</td>
    </tr>
    <tr>
     <td>
      <html-el:submit>Save</html-el:submit>
     </td>
    </tr>
   </table>
  </html-el:form>

  <script>
   <!--
    function showevent(evt)
	 {
        window.status = evt.type;
    }
    // -->
  </script>

 </body>
</html-el:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -