0

我有一个 html 页面,我正在尝试为动态创建的 div 调整大小和其他 ui 功能。该页面在本地目录中并通过 IE 文件 > 打开访问时正确显示。当我将文件传输到 Web 服务器并通过http://localhost/file.html访问时。不显示可调整大小的夹点图标。此外,还有一些未应用的 css 样式。

div 已定义

       var index = getCookie("divindex");
       if (index == "" || index == null) index = 1;
       var divid = "compage"+index;
       $("#page").append('<div id="'+divid+'" class="comdiv ui-widget-content"></div>');
       $('#'+divid).append('<p class="comhdr editableText ui-widget-header">Sample'+index+'</p>');
       $('#'+divid).css('top',50);
       $('#'+divid).css('left',50);
       $('#'+divid).css('width',150);
       $('#'+divid).css('height',150);
       $('#'+divid).resizable();
       $('#'+divid).draggable();
       $('#'+divid).draggable("option", "handle", '.comhdr');
       $( '#'+divid+' p').editableText();

这也发生在静态 div 上。

 <div id="editdiv" class="comdiv ui-widget-content" style="position: absolute; top: 150px; left: 850px; width:350px; 

height:250px; border:1px solid grey;">
    <p id="heading" class="comhdr editableText ui-widget-header">Editable</p>
</div>

文件中的库是

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>  
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.js"></script>
<link rel="stylesheet" href="ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/themes/base/jquery-ui.css">

<link rel="stylesheet" href="http://jqueryui.com/demos/demos.css">
<style>
.comdiv { position:absolute; padding: 0.5em; border: 1px solid black}
.comhdr { text-align: center; margin: 0; cursor:move; font: 14px bold Georgia; border 1px solid grey; background: grey;}
</style>
<script>
$(function() {
    $( "#editdiv" ).resizable();
    $( "#editdiv" ).draggable();
    $( "#editdiv" ).draggable("option", "handle", '#heading');
});
</script>

为什么本地文件和 Web 服务器之间的行为会有所不同?

http://jsbin.com/awosup

4

2 回答 2

0

如果我将 jquery/jquery-ui 的副本下载到我的 Web 服务器,这可以解决问题。从http://jqueryui.com/download我下载了稳定版 1.8.15 UI 亮度主题。

于 2011-08-12T01:41:48.277 回答
0

我也有一个问题,即可调整大小的手柄没有与其他一些未应用的样式一起出现。就我而言,我发现我定义了一个 css,它覆盖了一些 jquery-ui 样式。你可以在 Firebug 中看到这样的东西。在我的例子中,我定义了比“.ui-icon-gripsmall-diagonal-se”和“.ui-icon”类样式定义更重的 div 标签的背景。

不需要在我的 Web 服务器上安装 jquery 的本地副本。CDN 版本现在可以正常工作。

于 2011-08-29T19:37:17.773 回答