将信息传递给 jqModal

发布于 2024-08-15 16:55:02 字数 260 浏览 10 评论 0原文

我在 Django 应用程序中使用 jqModal。我想做的是有一堆不同的链接,每个链接都会向 jqModal 传递一个参数,让它根据参数调用不同的 ajax url。例如,根据点击的内容的 ID,我想做类似的事情:

$('#popup').jqm({ajax: '/myapp/objects/' + id, trigger: 'div.modaltrigger'});

其中 id 是我点击的内容的 id。

这可以吗?

I'm using jqModal inside a Django application. What I would like to do is have a bunch of different links each of which passes a parameter to jqModal to have it call a different ajax url based on the parameter. For example, depending on the ID of what is click on, I want to do something like:

$('#popup').jqm({ajax: '/myapp/objects/' + id, trigger: 'div.modaltrigger'});

Where id is the id of whatever I've clicked on.

Is this possible to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫离伤花 2024-08-22 16:55:02

使用触发元素的数据属性来存储您的URL:

<div class="modaltrigger" data-ajax-url="/myapp/objects/108"...

然后使用jqModal通过以下方式:

$('#popup').jqm({ajax: '@data-ajax-url', trigger: 'div.modaltrigger'});

Use data attributes of the triggering elements to store your URLs:

<div class="modaltrigger" data-ajax-url="/myapp/objects/108"...

Then use jqModal in the following way:

$('#popup').jqm({ajax: '@data-ajax-url', trigger: 'div.modaltrigger'});
撞了怀 2024-08-22 16:55:02

你说你想根据ID更改url,所以我假设你的链接看起来像这样

<div id="obj1" class="modaltrigger">foo</div>
<div id="obj2" class="modaltrigger">bar</div>

并且你希望jqModal像这样调用url

/myapp/objects/obj1
/myapp/objects/obj2

那么这段代码应该可以工作

//must run before first ajax call is made
$('div.modaltrigger').each(function(i, ele) {
    ele.title = '/myapp/objects/'+this.id;
});

$('#popup').jqm({
    ajax: '@title',
    trigger: 'div.modaltrigger'
});

You said you want to change the url depending on ID, so I assume your links look like this

<div id="obj1" class="modaltrigger">foo</div>
<div id="obj2" class="modaltrigger">bar</div>

And you want jqModal to call urls like this

/myapp/objects/obj1
/myapp/objects/obj2

Then this code should work

//must run before first ajax call is made
$('div.modaltrigger').each(function(i, ele) {
    ele.title = '/myapp/objects/'+this.id;
});

$('#popup').jqm({
    ajax: '@title',
    trigger: 'div.modaltrigger'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文