JQuery 动态对话框 Div
背景:
带有行的表格是使用 php 在页面上动态创建的。 使用jquery-ui-1.8.14.custom.min.js和jquery-1.5.1.min.js
目标: 我希望能够单击一行,该行将使用 php 页面中的新内容更新 Jquery Ui 对话框 div,然后在 Jquery Ui 对话框中显示此内容。
$(function(){
$('tr').live('click', function(){
$('.ui-dialog').load('<?php echo base_url();?>index.php/a/b/1');
$('.ui-dialog').dialog('open');
});
});
此代码使对话框非常快速地出现和消失,而不会停止。 我还尝试了以下我认为可行的方法:
$(function(){
$('tr').live('click', function(){
$('.ui-dialog').load('<?php echo base_url();?>index.php/a/b/1',
function(){
$('.ui-dialog').dialog('open')
});
});
});
对话框代码:
$(function(){$('.ui-dialog').dialog({
autoOpen: false,
width: 600,
draggable: true,
resizable: true,
open: function(){
$('.ui-widget-overlay').fadeIn();},
beforeClose: function(){
$('.ui-widget-overlay').fadeOut();},
show: "fade",
hide: "fade",
buttons: {
"Back to search": function() {
$(this).dialog("close"); }
}
})});
非常感谢任何帮助。谢谢。
Background:
A table with rows is created dynamically with php on a page.
Using jquery-ui-1.8.14.custom.min.js and jquery-1.5.1.min.js
Goal:
I'd like to be able to click on a row which would update the Jquery Ui dialog div with new content from a php page and then display this content in the Jquery Ui dialog box.
$(function(){
$('tr').live('click', function(){
$('.ui-dialog').load('<?php echo base_url();?>index.php/a/b/1');
$('.ui-dialog').dialog('open');
});
});
This code makes the dialog appear and disappear very fast without halting.
I've also tried the following which I thought would work:
$(function(){
$('tr').live('click', function(){
$('.ui-dialog').load('<?php echo base_url();?>index.php/a/b/1',
function(){
$('.ui-dialog').dialog('open')
});
});
});
Dialog code:
$(function(){$('.ui-dialog').dialog({
autoOpen: false,
width: 600,
draggable: true,
resizable: true,
open: function(){
$('.ui-widget-overlay').fadeIn();},
beforeClose: function(){
$('.ui-widget-overlay').fadeOut();},
show: "fade",
hide: "fade",
buttons: {
"Back to search": function() {
$(this).dialog("close"); }
}
})});
Any help is very much appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当你像这样初始化时:
它将 HTML 添加到
.ui-dialog
当你.load()
时它会删除它。您需要做的是将初始化代码放在ajax加载之后,或者:
http: //jsfiddle.net/hgeYs/4/
when you initialise like :
It adds HTML to the
.ui-dialog
when you.load()
it removes it.What you need to do is either put the initialise code after the ajax load or:
http://jsfiddle.net/hgeYs/4/
像这样的东西
something like this