1

我正在构建一个网络工具,我有很多窗口。到目前为止,我拥有纯 HTML,但想对其进行优化。这里的代码:我有超过 10 个具有相似框架的这些。

<div id="test" class="panel draggable">
    <div class="titlebar">
        <h3>test</h3>
        <div class="close" title="Close test window">&times;</div>
        <div class="sizing" style="display:none" title="Show the content">+</div>
        <div class="sizing" title="Hide the content">-</div>
    </div>
    <div class="content placeholder">
      // Any content here, from table,iframe,images...
    </div>
</div>

我正在使用 python (Google App Engine) JQuery / JS / HTML / CSS

4

1 回答 1

1

听起来您正在寻找开始使用 Web 框架。如果您对 python 感到满意,请尝试查看Django

于 2013-01-29T20:37:56.757 回答