今天小編來和大家一起學習一下有關于“bootstrap表單怎么提交信息?”這個問題吧!對于bootstrap框架來說學習過的小伙伴們應該都知道這是什么,下面是有關于這個問題小編整理的相關資料和信息,希望對大家有所幫助!
方法一:
submit提交
我們通過在前端頁面中的頭部插入一個js的方法來實現代碼如下:
function checkUser(){
var result = document.getElementById("userid").value;
var password = document.getElementById("userpassid").value;
if(result == "" ){
alert("用戶名不能為空");
return false;
}
if(password == "" ){
alert("密碼不能為空");
return false;
}else{
return true;
}
}
完成上面步驟之后我們在?form
?的表單中加入下面這些代碼:
<form id="formid" name="myform" method='post' action='user_login_submit.action' onsubmit="return checkUser();">
<table width="" 1O0%” border="o">
<tr>
<td width="6o" height="4o" align="right">用戶名 </td>
<td><input type="text" value="" class="text2" name="username" id="userid" />
</td>
</tr>
<tr>
<td width="6o" height="4o" align="right">密 碼 </td>
<td><input type="password" value="" class="text2" name="userpass" id="userpassid" />
</td>
</tr>
<tr>
<td width="6o" height="" 40" align="right"> </td>
<td>
<div class="c4">
<input type="submit" value="" class="btn2" />
這就是使用submit方法的相關代碼。
方法二:
button提交
對于這個方法的話我們直接看代碼:
function checkUser(){
var result = document.getElementById("userid").value;
var password = document.getElementById("passid").value;
if(result == "" ){
alert("用戶名不能為空");
return false;
}
if(password == "" ){
alert("密碼不能為空");
return false;
}
document.getElementById("formid").submit();
}
對于?form
?表格的寫法的話我們是需要使用類選擇器的代碼如下:
<form id="formid" method = "post' action = 'user_login_submit.action'>
button按鈕的寫法如下:
<input type="button" value="" class="btn2" onclick = "checkUser();"/>
總結:
以上就是有關于“bootstrap表單怎么提交信息?”這個問題的相關內容,當然如果你有更好的想法也可以提出來和大家一起分享學習,更多有關于bootstrap這個框架的相關內容我們都可以在Bootstrap教程中進行學習和了解!