清除网络中的重复代码

2024-05-13 09:19:22 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在建立一个网络工具,我有很多窗口。到现在为止,我有它纯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(googleappengine)JQuery/JS/HTML/CSS


Tags: the代码testdiv框架idtitlehtml