如何在现有函数中添加样式? 时间:2018-10-20 作者:Justin Munce 目标是为函数添加一些内部样式。该函数有一些if语句,然后执行以下操作:$content .= " <div> <h3>stuff</h3> <div>$additional_stuff</div> </div>"; endwhile; 我想放一些样式在那里也一样,所以当h3和额外的\\u东西加载时,它也会加载,但我的尝试方式只是破坏它。 1 个回复 SO网友:Antti Koskinen 这里有两个关于如何向代码中添加样式的示例。// Method 1. define classes in another variable, then do styling in styles.css $classes = \'another-class\'; $content .= " <div id=\\"my-id\\"class=\\"my-class\\"> // Method 2. use backslashes to escape double quotes and add id and classes as needed, then do styling in styles.css <h3 class=\\"{$classes}\\">stuff</h3> // Method 1. interpolate classes where needed <div style=\\"background-color: blue; color: #fff;\\">{$additional_stuff}</div> // Method 3. use backslashes to escape double quotes and add inline styles </div>"; 注意:在复制粘贴之前,请删除示例代码中的注释$content 到生产。 结束 文章导航