在通過(guò)入門級(jí)的前端學(xué)習(xí)之后我們就需要進(jìn)行中級(jí)慢慢的一步步深入,那么今天就來(lái)和大家說(shuō)說(shuō)有關(guān)于在AmazeUI中“怎么使用AmazeUI實(shí)現(xiàn)模態(tài)輸入框效果?”這個(gè)問(wèn)題,希望小編的分享對(duì)小伙伴們有所幫助!
在《【AmazeUI】模態(tài)框》(點(diǎn)擊打開(kāi)鏈接)一文中,已經(jīng)介紹過(guò)在AmazeUI這個(gè)手機(jī)版前端框架中,怎么使用模態(tài)框了,但是這篇文章提到的模態(tài)框只是那些單純的模態(tài)框。如果要實(shí)現(xiàn)一個(gè)有表單,同時(shí)又有“提交”與“關(guān)閉”的按鈕,要做出如下的效果,哪應(yīng)該怎么實(shí)現(xiàn)呢?
如下所示:
首先同樣是HTML布局:
<!--使用HTML5開(kāi)發(fā)-->
<!doctype html>
<html class="no-js">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--自動(dòng)適應(yīng)移動(dòng)屏幕-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!--優(yōu)先使用webkit內(nèi)核渲染-->
<meta name="renderer" content="webkit">
<!--不要被百度轉(zhuǎn)碼-->
<meta http-equiv="Cache-Control" content="no-siteapp"/>
<!--以下才是引入amazeui資源-->
<link rel="stylesheet" href="assets/css/amazeui.min.css">
<link rel="stylesheet" href="assets/css/app.css">
<!--引入js的時(shí)候要注意,必須先引入jQuery,再引入amazeui,因?yàn)檫@個(gè)框架是基于jQuery開(kāi)發(fā)的-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/amazeui.min.js"></script>
<title>Modal</title>
</head>
<body>
<button class="am-btn am-btn-primary" onClick="openModal()">登錄</button>
<!--模態(tài)框-->
<div class="am-modal am-modal-alert" tabindex="-1" id="login">
<div class="am-modal-dialog">
<div class="am-modal-hd">登錄</div>
<div class="am-modal-bd">
<!--模態(tài)框內(nèi)容-->
<table>
<tr>
<td>用戶名:</td>
<td><input type="text" id="username"/></td>
</tr>
<tr>
<td>密碼:</td>
<td><input type="password" id="password"/></td>
</tr>
</table>
</div>
<div class="am-modal-footer">
<!--關(guān)鍵是在這里為兩個(gè)按鈕加上data-am-modal-confirm與data-am-modal-cancel屬性-->
<span class="am-modal-btn" data-am-modal-confirm>提交</span>
<span class="am-modal-btn" data-am-modal-cancel>關(guān)閉</span>
</div>
</div>
</div>
</body>
</html>
之后,這段HTML腳本要跟下面的JavaScript聯(lián)系起來(lái)。
比如一按“登錄”按鈕,則顯示這個(gè)模態(tài)輸入框,JavaScript腳本則如下實(shí)現(xiàn):
<script>
function openModal(){
$('#login').modal({
onConfirm: function() {
var username=document.getElementById("username").value;
var password=document.getElementById("password").value;
alert("用戶點(diǎn)擊了提交,輸入了用戶名:"+username+",密碼:"+password+",接下去一般是ajax提交表單");
},
onCancel: function() {
alert("用戶點(diǎn)擊了關(guān)閉按鈕");
}
});
}
</script>
在通過(guò)簡(jiǎn)單的代碼和效果截圖我們就可以大致的對(duì)“怎么使用AmazeUI實(shí)現(xiàn)模態(tài)輸入框效果?”這個(gè)問(wèn)題有了不少的了解和思路了,如果小伙伴們覺(jué)得還是不了解我們可以在 AmazeUI 教程手冊(cè) 中進(jìn)行學(xué)習(xí)和了解!