php-使用DomDocument添加条件注释
作者:互联网
我见过一个与更改条件注释有关的线程,但是我找不到是否可以使用php dom功能添加新的条件注释.
我本质上希望能够将以下内容添加到其中(不是唯一的示例,但是您明白了!).
<!--[if ! lte IE 6]><link rel="stylesheet" href="css/default.css" /><!--<![endif]-->
我看过DomComment,但似乎在评论中添加了结束标记,因此最终得到:
<!--[if ! lte IE 6]--><link rel="stylesheet" href="css/default.css" /><!--<![endif]-->
解决方法:
这个:
<?php
$doc = new DOMDocument();
$doc->loadHTML("<html><body><p id='bla'>Test</body></html>");
$bla = $doc->getElementById("bla");
$bla->appendChild(new DOMComment('[if ! lte IE 6]><link rel="stylesheet" href="css/default.css" /><![endif]'));
echo $doc->saveHTML(); //<!--[if ! lte IE 6]><link rel="stylesheet" href="css/default.css" /><![endif]-->
为我工作.请注意,条件注释的proper syntax为
<!--[if ! lte IE 6]><link rel="stylesheet" href="css/default.css" /><![endif]-->
不
<!--[if ! lte IE 6]><link rel="stylesheet" href="css/default.css" /><!--<![endif]-->
如您所说,您想要拥有它.
标签:conditional-comments,domdocument,php 来源: https://codeday.me/bug/20191208/2093567.html