我想在我的第2页标题上显示。 使用以下内容是否有效:
<div data-role="page" class="<?php print $node_classes; ?>">
<div data-role="header" data-theme="a" data-position="inline">
<h1><?php print $site_name; ?></h1>
</div>
<div class="page-header ui-bar">
<h2 class="ui-title"><?php print $title; ?></h2>
</div>
....
</div>
答案 0 :(得分:0)
这取决于您定义为&#34;有效&#34;
它会正确渲染吗?我不这么认为,更好地使用:
<div data-role="header" data-theme="a" data-position="inline">
<h1><?php print $site_name; ?></h1>
</div>
<div data-role="header" data-theme="a" data-position="inline">
<h2 class="ui-title"><?php print $title; ?></h2>
</div>
这样做有意义吗?我不这么认为,