YouTube、Facebook、Twitter など、iframe 内のすべての Web サイトを読み込めません。データベースからすべてのページをロードしますが、他の Web サイトは通常どおりロードします。
私は試した:
js:
function showeffect(sUrl,sName)
{
$('#effect').hide(1000);
$('#effect').show(2200);
$('#website').attr("src", sUrl);
}
php:
<?php
$sql = "SELECT naam, url FROM items";
$database = new PDO('mysql:host=localhost;dbname=startandhome','root','');
$results = $database->query($sql);
$contentregel = 'contentregelblauw';
foreach($results as $row)
{
$itemnaam = $row['naam'];
$itemUrl = $row['url'];
echo "<div class=\"" .$contentregel ."\"><a href=\"#\" onclick=\"showeffect('".$itemUrl ."','".$itemnaam ."'); return false;\">" .$itemnaam ."</a></div>";
if ($contentregel == 'contentregelgrijs')
{
$contentregel = 'contentregelblauw';
}
else
{
$contentregel = 'contentregelgrijs';
}
}
?>
html:
<iframe id="website" class="website" src=""></iframe>