3

我的代码看起来像这样

<?php
ob_start();
?>
....
Some HTML
...
<div class="ui-state-error ui-corner-all" style="padding: 0 .7em;"> 
                    <p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span> 
                    <strong>Alert:</strong> Sample ui-state-error style.</p>
                </div>
  ....
Some HTML
...  
<?php
$markup = ob_get_clean();

// Specify configuration
$config = array(
    'indent' => true,
    'output-xhtml' => true,
    'wrap' => 200);

// Tidy
$tidy = new tidy;
$tidy->parseString($markup, $config, 'utf8');
$tidy->cleanRepair();

// Output
echo $tidy;
?>

没有得到结果<span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span>。我错过了什么?也许 TIDY 类删除空标签?如果是,我该如何预防?

4

1 回答 1

4

我发表了一条评论:“您是否尝试&nbsp;在跨度内添加或一些文本以确保将其删除,因为它是空的?”。这似乎&nbsp;奏效了。

因此,如果有人遇到同样的问题并来到这里,解决方案是:

&nbsp;在空元素内添加。

于 2012-09-02T14:45:37.830 回答