我希望图片在点击时将我从数据库中提取的字符串传递给Javascript函数。
但是,点击图片时出现此错误:
输入意外结束
我的代码:
<script>
var vidembed;
function changevid(strcode){
vidembed = "https://www.youtube.com/embed/" + strcode;
document.getElementById("vidFrame").src=vidembed
}
</script>
<embed id="vidFrame" type="text/html" width="640" height="390"
src="http://www.youtube.com/embed/M7lc1UVf-VE?enablejsapi=1&origin=http://example.com"
frameborder="0"></iframe>
<?php
$sql = "SELECT URL FROM tablename";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$strcode = $row['URL'];
echo "<div class='cont1'><div class='cont'><img onclick='changevid('$strcode')' class='vid' src='https://img.youtube.com/vi/" . $row["URL"] . "/mqdefault.jpg' /></div></div>";
}
}
$conn->close();
?>
答案 0 :(得分:1)
你应该在changevid
函数的内部和外部使用不同的引号,转义双引号,因为php字符串是双引号:
onclick=\"changevid('$strcode')\"
答案 1 :(得分:0)
最干净的方法是使用PHP heredoc syntax:
echo <<<HTML
<div class="cont1">
<div class="cont">
<img onclick="changevid('$strcode')" class="vid" src="https://img.youtube.com/vi/{$row['URL']}/mqdefault.jpg" />
</div>
</div>
HTML;