• jquery示例可修改的表格


    演示地址:http://www.corange.cn/demo/3787/index.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>jquery示例可修改的表格</title>
    <script src="http://www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
    google.load("jquery", "1.2.6");
    </script>
    <script type="text/javascript" src="js/jqueryEditUseBlur.js"></script>

    </head>
    <body>
    <table border="1">
    <tbody>
    <tr>
    <td class="editTD">
    <input class="status" name="product.status" value="1" type="hidden">
    <div class="editText">有货</div>
    </td>
    <td class="editTD">
    <input class="status" name="product.status" value="2" type="hidden">
    <div class="editText">缺货</div>
    </td>
    <td id="other">
    5678
    </td>
    <td>
    <div style="display: none">
    <select id="selectStatus" name="a" >
    <option >

    </option>
    <option id="1" value="1">
    有货
    </option>
    <option id="2" value="2">
    缺货
    </option>
    </select>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    </body>
    </html>

    原文地址:http://www.corange.cn/archives/2011/10/3787.html
  • 相关阅读:
    我的第一个shell 脚本
    ubuntu下配置java环境变量在root用户不生效
    ES6ES11易忘笔记
    UE4:Gameplay
    游戏服务器架构
    手柄陀螺仪、加速度计算
    UE4启动脚本(命令行参数)
    UE4:时间相关
    shell基础
    go Cobra命令行工具入门
  • 原文地址:https://www.cnblogs.com/zerogo/p/2209073.html
Copyright © 2020-2023  润新知