我正在使用 Bootstrap 和 PHP 创建一个表,它使用 Popovers。理想情况下,我希望我的弹出框包含 JPG,但由于我已经在使用 echo 创建我的 html 表,所以我不确定如何合并它。我试图包含如下所示的通常的“img src”,但它只是打印出代码。
echo "<td colspan='$newlength' id='example' rel='popover' data-content='<img src='imagetouse.jpg' /> This is my content.' data-title=' This is my Title'>$name . $time2</td>";
上面的代码终止了图像 src 之后的标签。我无法在图像周围使用“”,因为它们围绕回声的整个标签,因此再次终止代码。
尝试了 nietonfir 的建议:
echo '<td colspan="' . $newlength . '" id="example" rel="popover" data-content="<img src=\'imagetouse.jpg\' /> This is my content." data-title="This is my Title">' . $name . $time2 . '</td>';
我的弹出框的内容现在读取而不是显示图像:
<img src='imagetouse.jpg' /> This is my content.