2017-06-02 46 views
-4

我填寫了我的表單中的4個字段(姓名,電話,課程,中心)。第五場是「滾動」。當我填滿4字段,然後如何生成沒有窗體提交滾動, 我想生成這樣的滾動 我的4字段文本低於 Name-Jack,Phone-1234567890,Course-Computer,Center-010 After fill然後生成滾動並打印第五個字段,但不提交表單 Roll-Jac890Com10如何在php中沒有提交表單的情況下生成唯一的ID ajax

+0

Jac890Com10仍然不會是一個唯一的ID – karthick

+0

請出示你的代碼。 –

回答

-1

您可以附加一個onchange事件到您的輸入。

<form method="post" action=""> 
<input type="text" name="name" id="name" onchange="my_validate_func()"> 
<input type="text" name="phone" id="phone" onchange="my_validate_func()"> 
<input type="text" name="course" id="course" onchange="my_validate_func()"> 
<input type="text" name="center" id="center" onchange="my_validate_func()"> 
<input type="text" name="roll" id="roll"> 
<button type="submit">Submit</button> 

function my_validate_func(){ 
    if($('#name').val()!="" && $('#phone').val()!="" && $('#course').val()!="" && $('#center').val()!=""){ 
     $.ajax({ 
     url:'your_url', 
     success: function(response){ 
      $('#roll').val(response.roll_num); 
     } 
     }); 
    } 
} 
+0

在your_url我寫submit.php頁面。我可以寫什麼submit.php頁面 – Susant

+0

你需要把你的邏輯在那裏生成卷號並作爲迴應發回 – Mir

相關問題