課程
/前端開發(fā)
/HTML/CSS
/初識(shí)HTML(5)+CSS(3)-升級(jí)版
設(shè)定賬戶跟密碼怎么弄。
在這個(gè)基礎(chǔ)上又如何添加 ?登錄跟注冊(cè)這兩個(gè)內(nèi)容。
2017-11-04
源自:初識(shí)HTML(5)+CSS(3)-升級(jí)版 6-2
正在回答
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Title</title>
<script type="text/javascript"> ?
? ? function regist() { ?
? ? ? ? window.open('Untitled-2.html');?
? ? ? ? window.location.href = 'Untitled-2.html'; ?
? ? } ?
</script> ?
</head>
<body>
<form>
? <label for="UserName">輸入您的賬號(hào)</label>
? <input type="text" id="UserName" placeholder="Enter Your Name">
? <br />
? <label for="Password">輸入您的密碼</label>
? <input type="password" id="Password" placeholder="Enter Password">
? <input type="submit" value="登陸" name="LoginBtn" />
? <input type="button" value="注冊(cè)" name="SigninBtn" onclick="regist()">
</form>
</body>
</html>
BiggestMonster
qq_郁倦夏風(fēng)只送不寧_0 提問者
input或者botton標(biāo)簽,登錄和注冊(cè)加超鏈接就可以了
舉報(bào)
HTML(5)+CSS(3)基礎(chǔ)教程8小時(shí)帶領(lǐng)大家步步深入學(xué)習(xí)標(biāo)簽用法和意義
3 回答賬戶和密碼上的默認(rèn)值怎么修改
3 回答賬戶和密碼的默認(rèn)值
6 回答密碼與賬戶文本框的長(zhǎng)度不一樣
3 回答想把賬戶和密碼一起也用框架搭起來
2 回答怎么使密碼和用戶名對(duì)齊顯示
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-11-04
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Title</title>
<script type="text/javascript"> ?
? ? function regist() { ?
? ? ? ? window.open('Untitled-2.html');?
? ? ? ? window.location.href = 'Untitled-2.html'; ?
? ? } ?
</script> ?
</head>
<body>
<form>
? <label for="UserName">輸入您的賬號(hào)</label>
? <input type="text" id="UserName" placeholder="Enter Your Name">
? <br />
? <label for="Password">輸入您的密碼</label>
? <input type="password" id="Password" placeholder="Enter Password">
? <br />
? <input type="submit" value="登陸" name="LoginBtn" />
? <input type="button" value="注冊(cè)" name="SigninBtn" onclick="regist()">
</form>
</body>
</html>
2017-11-04
input或者botton標(biāo)簽,登錄和注冊(cè)加超鏈接就可以了