附加在 jQuery 中不起作用
我正在尝试将 tp-lightboxactitem 附加到 tp-lightboxcontainer 中。任何人都可以帮我解决这件事吗?它不起作用,我希望 lightbox activeitem 位于 tp-lightboxcontainer 内,并且 tp-lightboxactitem 位于其中心。
$('body').append('<div id="tp-lightboxcontainer" class="'+opt.style+' lightboxitem"></div>');
var tp-lightboxcontainer=find('#tp-lightboxcontainer');
tp-lightboxcontainer.append('<div id="tp-lightboxactitem" class="'+opt.style+' lightboxitem"></div>');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您实际上只在此处处理一个对象,因此您可以在一行中完成此操作。 jsFiddle
(仍然是目标容器)
ps:如果您想使用该容器来做更多事情,也可以通过在其前面放置
varwhatever=
来缓存它。You're really only working with one object here, so you can do this in one line. jsFiddle
<body>
(still target container)ps: if you want to use that container for more things, feel free to cache it too by putting
var whatever =
in front of it.是的。正如 Esailija 所说,代码在语法上不正确。我有以下有效且正确的代码:
更改完成:
Yes. Code is syntactically not correct as Esailija said. I have working and correct code below:
Changes done: