第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

bootstrap遮罩層如何進(jìn)行表單提交?

bootstrap遮罩層如何進(jìn)行表單提交?

可勁吃醋可勁鬧 2017-05-09 14:55:09
<!-- 模態(tài)框(Modal) --><div class="modal fade" id="myModal" tabindex="-100" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> ? ?<div class="modal-dialog"> ? ? ? ?<div class="modal-content"> ? ? ? ? ? ?<div class="modal-header"> ? ? ? ? ? ? ? ?<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button> ? ? ? ? ? ? ? ?<h4 class="modal-title" id="myModalLabel">個(gè)人信息</h4> ? ? ? ? ? ?</div> ? ? ? ? ? ?<div class="modal-body"> ? ? ? ? ? ? ? ?<form role="form" class="form" action="preservationUserInformation" method="get" > ? ? ? ? ? ? ? ? ? ?<input type="hidden" name="id" value="${user.id}"> ? ? ? ? ? ? ? ? ? ?<h4><c:if test="${!user.name.equals('')}">${user.name}</c:if></h4><span class="glyphicon glyphicon-mars">圖標(biāo)顯示性別</span> ? ? ? ? ? ? ? ? ? ?<table class="table table-striped"> ? ? ? ? ? ? ? ? ? ? ? ?<tbody> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td><label class="control-label">用戶名:&nbsp;</label></td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" ?class="form-control" disabled="disabled" value="${user.username}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?<c:if test="${user.name.equals('')}"> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td><label class="control-label">姓名:&nbsp;</label></td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="name" class="form-control" value="${user.name}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?</c:if> ? ? ? ? ? ? ? ? ? ? ? ?<c:if test="${user.sex.equals('')}"> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td><label class="control-label">性別:&nbsp;</label></td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<div class="form-group"> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<label class="radio-inline"> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="radio" name="sex" value="男" name="sex">男 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</label> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<label class="radio-inline"> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="radio" name="sex" value="女" name="sex">女 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</label> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</div> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?</c:if> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td>年齡:&nbsp;</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="age" class="form-control" value="${user.age}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td>家庭住址:&nbsp;</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="address" class="form-control" value="${user.address}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td>電話:&nbsp;</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="phone" class="form-control" value="${user.phone}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td>郵箱:&nbsp;</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="email" class="form-control" value="${user.email}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td>QQ:&nbsp;</td> ? ? ? ? ? ? ? ? ? ? ? ? ? ?<td> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?<input type="text" name="qq" class="form-control" value="${user.qq}" /> ? ? ? ? ? ? ? ? ? ? ? ? ? ?</td> ? ? ? ? ? ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? ? ?</tbody> ? ? ? ? ? ? ? ? ? ?</table> ? ? ? ? ? ? ? ? ? ?<div class="modal-footer"> ? ? ? ? ? ? ? ? ? ? ? ?<button type="button" class="btn btn-default" data-dismiss="modal">關(guān)閉</button> ? ? ? ? ? ? ? ? ? ? ? ?<button type="submit" class="btn btn-default" data-dismiss="modal">提交更改</button> ? ? ? ? ? ? ? ? ? ?</div> ? ? ? ? ? ? ? ?</form> ? ? ? ? ? ?</div> ? ? ? ?</div> ? ?</div>
查看完整描述

1 回答

已采納
?
幕附

TA貢獻(xiàn)78條經(jīng)驗(yàn) 獲得超18個(gè)贊


<form role="form" class="form" action="preservationUserInformation" method="get" > action不就是你的提交地址嗎?別get提交用post提交

查看完整回答
反對(duì) 回復(fù) 2017-05-09
  • 1 回答
  • 0 關(guān)注
  • 3464 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)