将信息传递给 jqModal
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用触发元素的数据属性来存储您的URL:
然后使用jqModal通过以下方式:
Use data attributes of the triggering elements to store your URLs:
Then use jqModal in the following way:
你说你想根据ID更改url,所以我假设你的链接看起来像这样
并且你希望jqModal像这样调用url
那么这段代码应该可以工作
You said you want to change the url depending on ID, so I assume your links look like this
And you want jqModal to call urls like this
Then this code should work