你可以将 jqmodal ajax 与 Web 表单一起使用吗
有没有办法将 jqmodal 的 ajax 属性与 asp.net webforms 一起使用?
<script type="text/javascript">
$(document).ready(function() {
$('#Button1').click(function() {
$('#modalContent').jqm({
ajax: "~/ShelterCreateForm.ascx"
});
$('#modalContent').jqmShow(this);
return false;
});
});
</script>
is there a way to use jqmodal's ajax property with asp.net webforms?
<script type="text/javascript">
$(document).ready(function() {
$('#Button1').click(function() {
$('#modalContent').jqm({
ajax: "~/ShelterCreateForm.ascx"
});
$('#modalContent').jqmShow(this);
return false;
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jqModal 与服务器端技术无关,这意味着它可以与服务器上的任何语言一起使用,包括 WebForms,条件是它指向返回部分 html 的服务器端 url:
以及返回此部分的服务器端 url (
Foo.ashx
) 可能是一个通用处理程序,如 这个答案:jqModal is server side technology agnostic meaning that it can be used with absolutely any language on the server including WebForms in condition that it points to a server side url which returns the partial html:
And the server side url that returns this partial (
Foo.ashx
) might be a generic handler as shown in this answer: