溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java webserve-html

發(fā)布時間:2020-06-30 04:02:16 來源:網(wǎng)絡(luò) 閱讀:187 作者:wx5d21d5e6e5ab1 欄目:編程語言

一個網(wǎng)頁包含:
html骨架
css 潤色
js 動態(tài)

<pre>預(yù)定義
<br/> 換行

<html>
    <head>
        <title>我的第一個html登錄</title>
    </head>
    <body>
    <h2>表單的使用</h2>
        <pre>
        post:提交數(shù)據(jù),基于http協(xié)議的不同,量大 ,請求參數(shù)url不可見,安全<br/>
        get:默認(rèn)方式,獲取數(shù)據(jù),如果要提交數(shù)據(jù)則量小,請求參數(shù)url可見,不安全<br/>
        action : 請求web服務(wù)器的資源,路徑  <br/>
        name:作為后端使用,區(qū)分唯一     <br/>
        id:作為前端使用,區(qū)分唯一      <br/>
        <pre>
        <form method="post" action="http://localhost:8888/index.html">
                        用戶名:<input type="text" name="uname"  id="uname"/>
                        密碼:<input type="password" name="pwd"  id="pwd"/>
                        <input type="submit" value="登錄"/>
        </form>

    </body>
</html>
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI