1

私はWebツールを構築していて、たくさんのウィンドウがあります。今のところ私はそれをプレーン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 に答える