jq模态问题
我正在尝试使用 jqModal 插件实现模式窗口。我进行 ajax 调用以使用表格数据填充 div。在那里,有一个可点击的进度条。
在我的脚本中,我不
$(document).ready(function() {
$('#jqmRTypes').jqm({modal:true});
showTypes = function(id,projNum) {
formData = 'vw=getTypes&ID='+id+'&project_number='+projNum;
alert(formData);
$.ajax({
type: "get",
url: "<cfoutput>#actURL#</cfoutput>",
data: formData,
cache: false,
success: function(result) {
$("#jqmRTypesText").html(result);
$('#jqmRTypes').jqmShow();
},
error: function(xmlHttpRequest, status, err) {
confirm('Error!' + err );
}
});
}
知道为什么,但在 firebug 中不断收到错误(没有描述并指向 $('#jqmRTypes').jqmShow();) 我可以使用 show() 而不是 jqmShow(),我将看到该窗口,但它不再是模块化的。
这让我抓狂。任何帮助将不胜感激。
谢谢
I am trying to implement a modal window using jqModal plug-in. I make an ajax call to populate a div with tabular data. In there, there is a clickable progress bar.
In my script, I have
$(document).ready(function() {
$('#jqmRTypes').jqm({modal:true});
showTypes = function(id,projNum) {
formData = 'vw=getTypes&ID='+id+'&project_number='+projNum;
alert(formData);
$.ajax({
type: "get",
url: "<cfoutput>#actURL#</cfoutput>",
data: formData,
cache: false,
success: function(result) {
$("#jqmRTypesText").html(result);
$('#jqmRTypes').jqmShow();
},
error: function(xmlHttpRequest, status, err) {
confirm('Error!' + err );
}
});
}
I don't know why but I keep getting an error in firebug (no description and points to $('#jqmRTypes').jqmShow();)
I can put show() instead of jqmShow() and i will see the window, but it's no longer modular.
It's driving me nuts. Any help will be appreciated.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
咕噜。我编写了一个自定义标签来显示进度条。根据完成的工作,它会显示一个带有百分比的条形。在这个标签中,我有:
一旦我删除了这一行,它就工作得很好。
grrr. I wrote a custom tag to display a progress bar. Depending on the work completed, it displays a bar with a percentage. Within this tag, I had:
Once I removed this line, it worked perfectly fine.