zoukankan      html  css  js  c++  java
  • jquery学习心得:一个很好的css和js函数调用的例子

    统一目录下的资源结构图:



    <html>
    <head>
     <link rel="stylesheet" href="gallery.css" type="text/css" media="screen" charset="utf-8"/>
    <script type="text/javascript" src="script.js"></script>
    </head>

    <body>
        <div id="container">
            <div id="header">
                <h1>StarTrackr!</h1>
        </div>
            <div id="content">
                <h2>Around Town Last Night</h2>
                
                <div id="ajaxInProgress"></div>
                <div id="photos">
                    <fieldset id="photoDetails">
                        <legend>Photo Tagging</legend>
                        <form id="details">
                            <p id="status"></p>
                            <p>
                                <label for="name">Name:</label><br/>
                                <input type="text" class="textField" name="name" id="name" />
                            </p>
                            <p>
                                <label for="tags">Tags:</label><br/>
                                <input type="text" class="textField" name="tags" id="tags" />
                            </p>
                            <p>
                                <input type="hidden" name="id" id="id">
                                <input type="button" value="update" id="update" />
                            </p>
                        </form>
                        <div id="gallery"></div>
                    </fieldset>
                </div>
       </div>
    </div>
    </body>
    </html>
  • 相关阅读:
    pandas 读取excle ,迭代
    prettytable模块(格式化打印内容)
    Python开发丨这些面试题会不会难倒你
    python开发最受欢迎的十款工具
    语言组成
    运算符优先级
    Python 位运算符 逻辑运算符 成员运算符
    **算术运算符
    **Python数据类型转换
    字符串-数字-列表(转换)
  • 原文地址:https://www.cnblogs.com/xiaochao12345/p/4073983.html
Copyright © 2011-2022 走看看