2

私は2つのhtmlページを持っています。そして1つのccsファイル。ある html の div タグ内のすべてのコンテンツを他の html にコピーする方法があることを知る必要があります。例えば

CSS ファイル:

#block {
/* some code that doesn't matter */
}

メインのhtml:

<div id="block">
Some text inside div called "block" that is need to be showed in any others html pages with the
same div "block"
</div>

サブ HTML ページ:

<div id="block">
Code that's need to be placed once to read all content from div "block"
</div>
4

1 に答える 1

1

条件付き読み込みデータhttp://24ways.org/2011/conditional-loading-for-responsive-designshttp://adactio.com/journal/4497/ & http://adactio.com/journal/5042/を調べてください

于 2012-09-18T17:49:03.310 に答える