我正在使用全日历:- http://arshaw.com/fullcalendar/
我正在使用 jquery .post 将参数返回到同一页面以生成一些结果,这运行良好。
同时,我希望使用 jquery ui 对话框来保存显示的内容。从官方网站粘贴示例代码时,该示例有效。但是,当将 .post 输出与对话结合时,它并不成功。
我想寻求帮助以结合以下两组脚本:-
//用于生成 .post 输出(工作!)
<script>
function event_details(thevalue){
$.post('module/calendar/event_details.php',{
eid:thevalue},
function(output){
$('#theeventmsg').html(output);
});
}
</script>
<div id='theeventmsg'></div>
//jquery ui 对话(工作!)
<script>
// increase the default animation speed to exaggerate the effect
$.fx.speeds._default = 1000;
$(function() {
$( "#dialog" ).dialog({
autoOpen: true,
show: "blind",
hide: "explode"
});
$( "#opener" ).click(function() {
$( "#dialog" ).dialog( "open" );
return false;
});
});
</script>
<div class="demo">
<div id="dialog" title="Basic dialog">
<p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<button id="opener">Open Dialog</button>
</div><!-- End demo -->
能够帮助???非常感谢!!