0

好的,这是我要在代码段中修改的标签:

  <body style="; width: 100%;" class="portrait" data-promo-button="">

我不想改变它的innerHTML,但它的样式属性。我想在样式属性中添加以下内容:

  background-color:black;

它是整个片段中唯一的正文标签。我使用 simpleHTMLDom 来获取包含 body 标记的内容:

  function game_login($link)
  {
       global $options;
       $ch=curl_init($link);
       curl_setopt_array($ch, $options);
       $content=curl_exec($ch);
       echo $content;
  }

我要编辑的正文标签存储在$content变量中

提前致谢

4

1 回答 1

1
$string ='    <body style="; width: 100%;" class="portrait" data-promo-button=""> </body>';
    $html = str_get_html($string);
    $html->find('body', 0)->style .= 'background-color:black;';
    echo $html;
于 2013-09-03T18:19:11.107 回答