0

我是 ASP.NET 的新手。现在我正在修改我们网站中的一些元素。我的页面显示了 n 张图片。单击每个图像时,将在页面上写入基于单击的图像的另一组图像。所以使用下面的代码。

for i=1 to n
response.write"<img src="&SourceFile&" id="&i&" onClick=func(this)>"
next

而我的功能代码如下

newSrc="myweb.com/Images/img1.gif"
function func(x)
{
     switch(parseInt(x.id))
     {
          case 1:x.src=newSrc;
                 break;
      }
 }

当我检查时,我发现错误 x 为空或不是对象。你能帮我找出错误吗...

4

1 回答 1

0

你需要这个.id

response.write"<img src="&SourceFile&" id='"&i&"' onClick='func(this.id)'>"

确保您的功能是<script></script>客户端

于 2013-02-23T02:07:18.253 回答