2016-10-15 4 views
-1

Я попытался добавить поле div динамически при нажатии кнопки, но я не получаю ответа. вот мой код.Как добавить поле div динамически на страницу html?

<div id="#para"> 
    <tr class="divider"></tr> 
    <tr> 
    <td><input type="text" placeholder="Enter Medicin Name" style="width:80%;height:30px;"></td> 
    <td><input type="file" </td> 
    <td><input type="time" placeholder="Enter Medicin Time"></td> 
    <td><input type="date" placeholder="Enter Start Date"></td> 
    <td><input type="date" placeholder="Enter End Date"></td> 
    </tr> 
    <tr class="divider"></tr> 
</div> 
<button type="submit" class="button" id="#btn1" value="Submit"><img src="images/plus.png"> Add More Notification</button> 

Вот мой Js Код

$(document).ready(function(){ 
    $("#btn1").click(function(){ 
    $("#para").append(' <tr class="divider"></tr> <tr class="notification-row"><td><input type="text" placeholder="Enter Medicin Name" style="width:80%;height:30px;"></td> <td><input type="file" </td> <td><input type="time" placeholder="Enter Medicin Time"></td> <td><input type="date" placeholder="Enter Start Date"></td><td><input type="date" placeholder="Enter End Date"></td> </tr><tr class="divider"></tr>'); 
    }); 
}); 
+0

сделал консоль с указанием каких-либо EROR? – Kasnady

+0

no нет ошибки –

+0

Ваш html недействителен. Вы не можете использовать 'tr' в' div'. Может быть, проблема здесь. – Mohammad

ответ

1

Попробуйте

<div id="para"> 
    <tr class="divider"></tr> 
    <tr> 
    <td><input type="text" placeholder="Enter Medicin Name" style="width:80%;height:30px;"></td> 
    <td><input type="file" </td> 
    <td><input type="time" placeholder="Enter Medicin Time"></td> 
    <td><input type="date" placeholder="Enter Start Date"></td> 
    <td><input type="date" placeholder="Enter End Date"></td> 
    </tr> 
    <tr class="divider"></tr> 
</div> 
<button type="submit" class="button" id="btn1" value="Submit"><img src="images/plus.png"> Add More Notification</button> 

вы должны удалить # на ваш HTML сценарий

в HTML (ид) = JQuery (#) в HTML (классе) = jQuery (.)

вы можете источник этого на Google

+0

да, его работа теперь сильно вам спасибо :) –

+0

любезно пометьте его как ваш ответ, если вы нашли его правильным .. Спасибо @AmitChauhan – Kasnady