可拖动的jquery弹出窗口

时间:2013-04-06 06:40:49

标签: php jquery

我有一个可拖动的jquery弹出窗口,现在它在其正文中显示一条消息。但是我想在弹出窗口中加载一个html页面我该怎么做呢

这是弹出窗口的屏幕截图

enter image description here

这是我的代码 popup.php

<!DOCTYPE html>
<html>
<head>
    <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
    <style type="text/css">
        #draggable { width: 200px; height: 250px; background: silver; }
    </style>
    <script>
        $(document).ready(function() {
            $("#draggable").draggable();
        });
    </script>
</head>
<body style="font-size:75%;">

    <div id="draggable">Drag me</div>

</body>
</html>

请帮助我,谢谢

2 个答案:

答案 0 :(得分:0)

只需使用load

$('#draggable').load('filetoload.html');

答案 1 :(得分:0)

尝试使用.load()并将其设为.draggable()

$(document).ready(function() {
    $("#draggable").load('yourtargetpage.php').draggable();
});