zoukankan      html  css  js  c++  java
  • Python云端系统开发入门 pycharm代码

    html

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    </head>
    <body>
    <ul>
    <li>Python网络爬虫</li>
    <li>Python云端系统开发</li>
    <li>Python全栈能力</li>
    </ul>

    </body>
    </html>



    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
    li {color:red}
    </style>
    </head>
    <body>
    <ul>
    <li>Python网络爬虫</li>
    <li>Python云端系统开发</li>
    <li>Python全栈能力</li>
    </ul>

    </body>
    </html>



    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
    function displayDate() {
    document.getElementById("time").innerHTML=Date();
    }
    </script>
    </head>
    <body>
    <p id="time">这里将显示时间</p>
    <ul>
    <li>Python网络爬虫</li>
    <li>Python云端系统开发</li>
    <li>Python全栈能力</li>
    </ul>
    <button type="button" onclick="displayDate()">显示时间</button>

    </body>
    </html>
  • 相关阅读:
    2017年度最具商业价值人工智能公司TOP50 榜单发布
    滑动swipe的妙用
    UE3优化
    UE4 框架
    制作HUD
    Component概念
    手游记事
    C++与UnrealScript脚本交互
    unreal Script(US)一些注意事项
    UDK游戏打包详解
  • 原文地址:https://www.cnblogs.com/china520/p/10540530.html
Copyright © 2011-2022 走看看