3
我必須在有多個輸入需要由用戶輸入表單之前顯示在表單中輸入的數據,但在提交表單之前,我希望向用戶顯示其自己的I/P將如何獲得顯示。提交表單
我的頁面分爲兩個部分,一部分包含表單和2包含佈局
<form class="form-horizontal" enctype="multipart/form-data" role="form" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="POST">
<div class="form-group">
<label for="input01" class="col-sm-2 control-label">First Name</label>
<div class="col-sm-4">
<input type="text" class="form-control" name="firstname" id="input01">
</div>
</div>
<div class="form-group">
<label for="input01" class="col-sm-2 control-label">Last Name</label>
<div class="col-sm-4">
<input type="text" class="form-control" name="lastname" id="input02">
</div>
</div>
<div class="form-group">
<label for="input01" class="col-sm-2 control-label">Location</label>
<div class="col-sm-4">
<input type="text" class="form-control" name="location" id="input03">
</div>
</div>
</form>
現在我要顯示上面的數據會有所不同DIV的地方,這需要做前提交按鈕,例如:
我想這
when user types firstname, at the same instance it should be displayed under <div id="firstname"></div>,
when user types lastname , at the same instance it should be displayed under <div id="lastname "></div>,
when user types location, at the same instance it should be displayed under <div id="location"></div>,
目前,我有作品只爲單個輸入
代碼<input type="text" value="">
<p></p>
$("input")
.keyup(function() {
var value = $(this).val();
$("p").text(value);
})
.keyup();
但我想要的東西可以適用於任何數量的輸入,如上面的示例中所述。任何人都可以請幫助我吧
它顯示的I/P只有1項,u能請提供一個小提琴 – ne1902
澄清請。你使用什麼代碼。 –
我用的第一個,bcoz的ID將是差異爲每格 – ne1902