0

我一直在尝试复制这个

但是我在尝试制作时不断碰到一个凹凸,因此如果单击图片,则会出现一个固定宽度的弹出窗口;

这是我的弹出脚本;

<script type="text/javascript">
// Popup window code
function newPopup(url) {
    popupWindow = window.open(
        url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
</script>
<a href="JavaScript:newPopup('HTTPLINK');">Description</a>

我正在尝试在使用基本 HTML 表格时完成这项工作。关于如何完成这项工作的任何想法?如果您对如何实现这一目标有更好的程序,请告诉我。

4

1 回答 1

0

我想你会想要这样的东西:

<script type="text/javascript">
// Popup window code
function newPopup(url) {
    popupWindow = window.open(
        url,'popUpWindow','height=700,width=800,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
</script>

<a href="JavaScript:newPopup('HTTPLINK');"><img src="http://i.minus.com/jbgtAF6eRWaj0E.jpg" /></a>
于 2013-10-19T12:16:08.307 回答