我在使用螢火蟲調試我的javascript時,在參數列表「(第1行)後不斷收到一個」缺少的)「。我不知道什麼是錯,因爲它似乎所有括號都在那裏。失蹤)在javascript中的參數列表(第1行)後
該功能應該放置一個圖像,可以點擊打開一個燈箱的ID爲「bigPic」的div。
下面是相關代碼:
<script type="text/javascript">
function addContent(divId,filePath,comment) {
document.getElementById(divId).innerHTML = "<div align=\"center\"><a href="+filePath+" title="+comment+" rel=\"lightbox\"><img src="+filePath+" alt="+comment+" style=\"max-height:270px;max-width:410px;\"/></a></div><div id="+comment+" align=\"center\" style=\"font-family:Verdana;margin-top:-13px;color:white;background-color:#07396B;\"><p>"+comment+"</p></div> ";
}
</script>
...
<div width="420px" height="320px" id="bigPic" name="bigPic">
<img src="http://www.villa-gloria-katouna.com/Pool%20viewsmall.JPG" />
</div>
...
echo "<div align=\"center\" style=\"display:inline; overflow:hidden;\"><img src=\"pics/$file\" style=\"cursor:pointer;cursor:hand;\" alt=\"$file\" height=\"30px\" width=\"30px\" onclick=\"addContent('bigPic', $file, $comment);\"/></a></div> ";
這段代碼很好。你的錯誤在別的地方。顯示完整的代碼。 – 2011-12-26 22:20:26
@ Xeon06「好」是一個非常...主觀的詞。 – Zirak 2011-12-26 22:22:04
@Zirak在,它沒有錯誤。但是我可能錯了,波蒂抓到了我沒有注意到的東西。 – 2011-12-26 22:23:22