как добавить запись в datatable в представлении mvc с помощью js

#javascript #model-view-controller

#javascript #модель-представление-контроллер

Вопрос:

я новичок в asp.net mvc и js Я хочу добавить запись в подробную таблицу, это мой html-код

Добавить в список

                         <div class="form-group">
                            <label for="Name"> Account Name: </label>
                            <select id="Accounts" class="form-control">
                                <option value="">Select Account</option>
                            </select>
                            <small id="error_Accounts" class="form-text error_msg">Select Account from list</small>
                        </div>
                        <div class="form-group" id="medicineDetails1">
                            @*<p style="font-size:11px" id="medicineDetails"></p>*@
                            @*buying price : <strong>12.99</strong>, Batch No: <strong>2255662</strong>*@

                        </div>

                        <div class="col-md-4">
                            <div class="form-group">
                                <label for="Quantity"> Qty : </label>
                                @Html.TextBox("Qty1", null, new { @class = "form-control", @type = "number", id = "Qty1" })
                                <small id="error_Qty1" class="form-text error_msg"></small>
                            </div>
                        </div>
                        <div class="col-md-4">
                            <div class="form-group">
                                <label for="Rate">  : Rate</label>

                                @Html.TextBox("Rate", null, new { @class = "form-control", @Value = "0", @type = "number", id = "Rate" })
                                <small id="error_Rate" class="form-text error_msg"></small>
                            </div>
                        </div>
                        <br />
                        <br />


                        <div class="form-group" style="width:250px;float:left">
                            <label for="B">Narration </label>
                            @Html.TextBox("Narration", null, new { @class = "form-control", id = "Narration", @placeholder = "Enter some Narration" })
                            <small id="error_Narration" class="form-text error_msg">Narration  required</small>

                        </div>
                        <div class="col-md-4" style="float:left;width:150px">
                            <div class="form-group">
                                <label for="B">Amount</label>
                                @Html.TextBox("Amount1", null, new { @class = "form-control", @Value = "0", @type = "number", id = "Amount1" })
                                <small id="error_Amount1" class="form-text error_msg"> Amount is Requrid</small>
                            </div>
                        </div>

                        <div class="form-group col-md-4" style="margin-left:20px;width:100px">
                            <label for="Drcr"> Dr/Cr: </label>
                            @Html.DropDownList("Drcr", new List<SelectListItem>
                                {
                                    new SelectListItem() {Text = "Dr", Value="Dr"},
                                    new SelectListItem() {Text = "Cr", Value="Cr"},
                                },  new { @class = "form-control", onchange = "blankme(this.id)" })

                            <small id="error_drcr" class="form-text error_msg"> Drcr is Requrid</small>
                        </div>
                        <br><br />
                        <div class="form-group m-b-0">
                            <button type="submit" id="addToIe" class="btn btn-info">
                                Add To Expenses or Income
                            </button>
                        </div>

                    </form>
                </div>
 

Расходы / доходы

Имя учетной записи Sr
Кол-во
Оценить
Повествование
Количество
Dr / Cr

                                         </tr>
                                    </thead>
                                    <tbody1></tbody1>
                                    <tfoot>
                                        <tr>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td> <strong> Total:</strong> </td>
                                            <td> <strong id="SubTotal1">  </strong> </td>
                                            <td></td>
                                        </tr>
                                    </tfoot>
                                </table>
                            </div>
                        </div>
                        <small id="error_SubTotal1" class="form-text error_msg">Atleast add one item</small>
                        <br />
                        <br />
                    </div>
 

и это мой

код js

$(«#addToIe»).click(function (e) { e.preventDefault(); var AccountId = $(«Опция #Accounts:выбрана»).val(), AccountsName = $(«Опция #Accounts: выбрана»).text(), кол-во = $(«#Qty1»).val(), rate = $(«#Rate»).val(), повествование = $ («#Повествование»).val(), drcr = $(«#Drcr»).val(), amountt = $(«#Amount1»).val(), detailsTableBody1 = $(«#detailstablebody1 tbody1″); var productItem1 = ‘ ‘ AccountId ‘ ‘ AccountsName » кол-во » ставка » amountt » повествование ‘ ‘ drcr «; detailsTableBody1.append(productItem1); });

]

но когда я нажимаю на addToIe

он ничего не делает и не показывает никаких ошибок

пожалуйста, помогите мне

спасибо

Ответ №1:

На самом деле я переписывал ichanged tbody на tbody1, теперь я переписал tbody1 на tbody, и все работает нормально.