JQuery 的行真的很长
我有这么长的 JQuery 行和太多的引号。这让我很困惑:
$('("<img>", { src: oembed.thumbnail_url, width:200 }).children("img").wrap("<div class="thumbnail_border" />")').insertBefore("div#heard_div");
所以问题是这一行的正确语法是什么。
I have this really long line of JQuery and too many quotes. It's tripping me up:
$('("<img>", { src: oembed.thumbnail_url, width:200 }).children("img").wrap("<div class="thumbnail_border" />")').insertBefore("div#heard_div");
And so the question is what is the correct syntax for this line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该行在很多方面都是错误的...
不知道为什么您要尝试在新创建的
img
元素中选择img
子元素,因为不允许包含任何其他元素。您应该看看 Rebeccca Murphey 所著的《jQuery 基础知识》这本很棒的书。
另外,我真的很想知道你的问题是什么:)
That line is so wrong in so many ways...
No idea why you are trying to select the
img
children within the newly createdimg
element because it isn't allowed to contain any other elements.You should take a look at the awesome book jQuery Fundamentals by Rebeccca Murphey.
Also, I am really wondering what your question is :)
我只是因为无聊才做这个……
但是你可能会因为这种类型的“问题”而受到很多批评,因为它基本上是一个“为我做我的工作”的请求。
顺便说一句:我不知道你想用那段代码做什么,我刚刚解决了报价问题。
I'm only doing this b/c I'm bored...
... but you'll probably get a lot of flack for this type of "question" as it's basically a "do my work for me" request.
BTW: I have no idea what you're trying to do with that bit of code, I've just fixed the quote issue.