jQuery 模板 - 替换 DIV 内容
因此,我使用 jQuery 模板,并在我的应用程序中使用以下代码:
@using (Html.BeginForm())
{
@Html.DropDownList("StateList",
Model.States,
"< Select >"
)
<div id="designCenters"></div>
<script id="designCenterTemplate" type="text/html">
<p><li>${Name}</li></p>
</script>
}
<script language="javascript" type="text/javascript">
$("#StateList").change(function () {
$.getJSON("/api/designcentersbystate/" + $(this).val(),
function (data) {
$("#designCenterTemplate").tmpl(data).appendTo("#designCenters")
});
});
</script>
由于我在模板函数的回调函数参数中调用 .appendTo,显然设计中心列表已添加到列表中。我的目标是用模板化结果替换
中的内容。寻找最有效的方法来做到这一点。
谢谢。
So I'm using jQuery templates and have the following code working in my application:
@using (Html.BeginForm())
{
@Html.DropDownList("StateList",
Model.States,
"< Select >"
)
<div id="designCenters"></div>
<script id="designCenterTemplate" type="text/html">
<p><li>${Name}</li></p>
</script>
}
<script language="javascript" type="text/javascript">
$("#StateList").change(function () {
$.getJSON("/api/designcentersbystate/" + $(this).val(),
function (data) {
$("#designCenterTemplate").tmpl(data).appendTo("#designCenters")
});
});
</script>
Since I'm calling .appendTo in the callback function parameter of the template function, obviously the list of design centers is added to the list. My goal is to REPLACE the content within <div id="designCenters">
with the templated results.
Looking for the most efficient way to do this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样更改成功函数:
或者您可以每次清空容器。
Change the success function like so:
Or you could empty the container each time.
您可以像这样替换元素中的 html:
You can replace the html in an element like this: