在特定位置创建img
我试图从标签中获取 href,创建一个 img 并使用 href 作为 src。该网站上的另一个人帮助解决了 src=href 部分,但我在使用此 src 创建 img 并将其附加到特定位置时遇到困难。这绝对是某种我无法弄清楚的语法错误。
如果我使用 src 的实际链接,它会有点作用。
$("#Results a").live('dblclick', function(event){
if (event.type === 'dblclick') {
var src = $(this).attr("href");
$("#Target_Location").append('<img src=" " />').attr("src", src).addClass('DCT_Card');
}
});
发生的情况是 #Target_Location 是获取该类的位置,并且不会生成任何 img。
I'm trying to grab the href from a tag, create an img and use the href as the src. Another person on this site helped with that src=href part, but i'm having difficulties creating an img with this src and appending it to a specific location. This is definitely some sort of syntax error that i can't figure out.
If i use an actual link for the src, it works somewhat.
$("#Results a").live('dblclick', function(event){
if (event.type === 'dblclick') {
var src = $(this).attr("href");
$("#Target_Location").append('<img src=" " />').attr("src", src).addClass('DCT_Card');
}
});
What happens, is that the #Target_Location is the one that gets the class, and no img is produced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jsFiddle。
试试这个...
jsFiddle。
jsFiddle.
Try this...
jsFiddle.
试试这个代码:
Try this code: