我正在构建一个网络工具,我有很多窗口。到目前为止,我拥有纯 HTML,但想对其进行优化。这里的代码:我有超过 10 个具有相似框架的这些。
<div id="test" class="panel draggable">
<div class="titlebar">
<h3>test</h3>
<div class="close" title="Close test window">×</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