zoukankan      html  css  js  c++  java
  • Form Tags >Form Tag Themes

    <!-- Example 1: -->
    <s:form
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" .... >
      ....
        <s:textfield label="Customer Name" tooltip="Enter the customer name" .... />
      ....
    </s:form>
    
    <!-- Example 2: -->
    <s:form
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" .... >
      ....
        <s:textfield label="Address"
             tooltip="Enter your address"
             tooltipDelay="5000" />
      ....
    </s:form>
    
    
    <-- Example 3: -->
    <s:textfield
           label="Customer Name"
           tooltip="One of our customer Details">
           <s:param name="tooltipDelay">
                500
           </s:param>
           <s:param name="tooltipIconPath">
                /myImages/myIcon.gif
           </s:param>
    </s:textfield>
    
    
    <-- Example 4: -->
    <s:textfield
             label="Customer Address"
             tooltip="Enter The Customer Address" >
             <s:param
                 name="tooltipDelay"
                 value="500" />
    </s:textfield>
    
    
    <-- Example 5: -->
    <s:textfield
             label="Customer Telephone Number"
             tooltip="Enter customer Telephone Number"
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" />
    
    
  • 相关阅读:
    Javascript高性能编程-提高Dom访问速度
    获取在线人数
    js倒计时
    支付宝支付
    微信扫码支付
    多条sql语句实现事物处理
    防止页面重复刷新
    bootstrapTable.js 使用
    org_chart.js 使用方法
    js上传图片及时显示
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/2992115.html
Copyright © 2011-2022 走看看