學(xué)習(xí)要點(diǎn)
(一) HTML部分
<!--表單區(qū)-->
<div id="dialog" title="會(huì)員注冊(cè)">
<p>
<label for="user">賬號(hào):</label>
<input type="text" name="user" class="text" id="user" title="請(qǐng)輸入賬號(hào),不小于2位!">
<span class="star"> * </span>
</p>
<p>
<label for="password">密碼:</label>
<input type="password" name="password" class="text" id="password" title="請(qǐng)輸入密碼,位數(shù)不能小于6位!">
<span class="star"> * </span>
</p>
<p>
<label for="email">郵箱:</label>
<input type="text"name="email" class="text" id="email" title="請(qǐng)輸入電子郵件!">
<span class="star"> * </span>
</p>
<p>
<label for="">性別</label>
<input type="radio" name="sex" id="male" checked="checked"><label for="male">男</label>
<input type="radio" name="sex" id="female"><label for="female">女</label>
</p>
<p>
<label for="date">生日:</label>
<input type="text" name="date" readonly="readonly" class="text" id="date">
</p>
<p>
<select name="city" id="city2">
<option value="天津">天津</option>
<option value="北京">北京</option>
<option value="石家莊">石家莊</option>
</select>
</p>
</div>
<!--表單區(qū)結(jié)束-->
(二) css部分
#dialog{padding:15px;}
#dialog p{margin:10px 0;padding:0;}
#dialog p label{font-size:14px;color:#666;}
#dialog p .star{color:red;}
#dialog.text{border-radius:4px;border:1px solid #ccc;background:#fff;height:25px;width:200px;text-indent:5px;color:#666;}
(三) jquery部分
//dialog樣式
$("#dialog").dialog({
title:"這個(gè)就是注冊(cè)的對(duì)話框",
width:600,
height:600,
minWidth:400,
minHeight:400,
autoOpen:false,
draggable:false,
//position:"center center",
show:true,
hide:true,
resizable:false,
modal:true,
closeText:"關(guān)閉",
buttons:{
"提交":function(){window.alert("提交")},
"保存":function(){window.alert("關(guān)閉")}
}
})
//點(diǎn)擊后彈出來(lái)對(duì)話框
$("#dialog").buttonset();
$("#date").datepicker();
$("#dialog input[title]").tooltip();
//下拉框
$("#city2").on('selectmenuchange', function (e,ui){
console.log(ui.item.value);
})
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。