在 html 内插入 iframe
Inserting iframe inside html
我的 index.php 页面中有此代码:
$page->html .= " ";
我想在“ ”中放置一个 iframe 以正确显示,但我尝试了几种方法,但都不起作用。你能帮助我吗?
我试过这个:
$page->html .= "<Iframe src="/shoutcast20/index.php" width="670" height="389" frameborder="0"></Iframe> ";
第一个解决方案
$page->html .= '<Iframe src="/shoutcast20/index.php" width="670" height="389" frameborder="0"></Iframe> ';
第二个解决方案:
$page->html .= "<Iframe src=\"/shoutcast20/index.php\" width=\"670\" height=\"389\" frameborder=\"0\"></Iframe> ";
^^ 试试
您需要在引号前加上反斜杠或将双引号更改为单引号
我的 index.php 页面中有此代码:
$page->html .= " ";
我想在“ ”中放置一个 iframe 以正确显示,但我尝试了几种方法,但都不起作用。你能帮助我吗? 我试过这个:
$page->html .= "<Iframe src="/shoutcast20/index.php" width="670" height="389" frameborder="0"></Iframe> ";
第一个解决方案
$page->html .= '<Iframe src="/shoutcast20/index.php" width="670" height="389" frameborder="0"></Iframe> ';
第二个解决方案:
$page->html .= "<Iframe src=\"/shoutcast20/index.php\" width=\"670\" height=\"389\" frameborder=\"0\"></Iframe> ";
^^ 试试 您需要在引号前加上反斜杠或将双引号更改为单引号