临时存储对象属性
这就是我正在尝试的,
- 运行脚本将每张图片变成虚拟图片。
- onclick,图像切换回原始图像。
这是我的实际代码:
actobjSrc = $(actobj).attr('src');
$(actobj).attr('oldsrc', actobjSrc);
$(actobj).attr('src', 'temp.png');
$('img').click(function(){
$(this).attr('src', $(this).attr('oldsrc'));
});
结果是: “XML 过滤器应用于非 XML 值(函数(名称、值)...”
This is what i am trying,
- run script turning every picture to a dummy one.
- onclick, an image switching back to the original.
That is my actuall code:
actobjSrc = $(actobj).attr('src');
$(actobj).attr('oldsrc', actobjSrc);
$(actobj).attr('src', 'temp.png');
$('img').click(function(){
$(this).attr('src', $(this).attr('oldsrc'));
});
Resulting in:
"XML filter is applied to non-XML value (function (name, value)..."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我建议使用 jquery data 方法
I would suggest to use the jquery data method
试试这个:
Try this instead :
你在这里多加了一个点:
应该是
You put an extra dot here:
should be
正如小提琴所建议的,您的代码示例实际上可以工作,因为
您的麻烦可能在于
actobj
之前我无法从您的代码中推断出更多内容,因此请给出更多信息
As the fiddle suggests, your code sample actually works as it is
your trouble probably lies in
actobj
beforeheadsI cannot infer any more from your code, so please give some more info
使用
Use