gpt4 book ai didi

javascript - 剑道内联模板中的 jQuery

转载 作者:行者123 更新时间:2023-11-28 06:08:02 24 4
gpt4 key购买 nike

是否可以让 jQuery 在内联模板中运行?

这就是我想要实现的目标。我有一个内联模板,其中包含用户填写以提交回我的 Controller 的表单。我在表单上有一组单选按钮。如果他们单击最后一个单选按钮,我需要显示我的文本区域并需要提交表单。

以下是调用使用模板的窗口的代码:

function onRejectClick(e) {
e.preventDefault();

var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
var wnd = $("#Reject").data("kendoWindow");

wnd.content(rejectTemplate(dataItem));
wnd.center().open();
}

这是我的模板:

<script type="text/x-kendo-template" id="rejectTemplate">
<div id="reject-container">
@using (Html.BeginForm("RejectConcern", "Filter", FormMethod.Post, new { @id = "rejectConcern", @style = "width:100%", @class = "k-content" }))
{
@Html.AntiForgeryToken()
<input type="hidden" id="id" name="id" value="#= data.id #" />
<table>
<tr>
<td valign="top">
<label>Reason</label>
</td>
<td>
<label>
@Html.RadioButton("reasonForRejection", "NotQuestion", false, new { @id = "reasonForRejection" })Concern is not a question and will not be answered
</label>
<label>
@Html.RadioButton("reasonForRejection", "Inappropriate", false, new { @id = "reasonForRejection" })Concern contains inappropriate language and will not be answered
</label>
<label>
@Html.RadioButton("reasonForRejection", "Irrelevant", false, new { @id = "reasonForRejection" })Concern is not relevant to our business/operation and will not be answered
</label>
<label>
@Html.RadioButton("reasonForRejection", "Personal", false, new { @id = "reasonForRejection" })Concern is about an individual, a specific group, or area and will not be answered
</label>
<label>
@Html.RadioButton("reasonForRejection", "Other", false, new { @id = "reasonForRejection" })Other
</label>
</td>
</tr>
<tr>
<td> </td>
<td>
@Html.TextArea("answer",
new
{
@id = "answer",
@name = "answer",
@class = "k-textbox",
@placeholder = "Enter the reason for rejection here.",
@validationmessage = "The reason for rejection is required.",
@style = "width: 600px; min-width:600px; max-width:69%; height:200px",
@maxlength = "1000"
}
)
</td>
</tr>
<tr>
<td> </td>
<td>
<div class="actions">
<button type="submit" id="rejectConcernButton" class="k-button">Submit</button>
</div>
</td>
</tr>
</table>
}
</div>
</script>

如何使用 jQuery 显示/隐藏答案文本区域字段,并根据是否选中最后一个单选按钮将其设为必需?如果 jQuery 无法实现,可以通过常规 J​​avaScript 来完成吗?

最佳答案

如果可以用 javascript 完成,在本例中也可以用 jQuery 完成。我的意思是,如果您可以使用 javascript 代码,那么您也可以使用 jQuery 代码。我建议您在小部件的主要元素中设置一个事件。每个小部件都有一个名为 element 的属性,它为您提供小部件的主要 html 元素。因此,如果您在小部件内的所有单选框中设置一个事件,您将能够操作模板生成的内容,例如:

$($("#listView").data("kendoListView").element).on('change', 'input[type="radio"]', function() { });

Demo

我不确定您使用的是什么小部件,但我在本演示中使用了 ListView。

关于javascript - 剑道内联模板中的 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36648944/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com