jquery 将 foreach 附加到 div
我正在尝试使用 jquery 创建动态标签云,我希望它从页面中提取关键字,然后将它们吐出在 div 中,但我不知道如何去做 - 我知道如果它是 php,但不太擅长 jquery。
我已经创建了我的变量“keywords”
var keywords = jQuery("meta[name=keywords]").attr("content");
现在我该如何对其进行 foreach 来附加 div“tagCloud”,如下所示:
<div class="tagCloud" id="tagCloud">
Keyword 1 \n
Keyword 2 \n
Keyword 3 \n
</div>
等等..如果有人可以帮助我,那就太棒了:)
I'm trying to create a dynamic tag cloud using jquery, I want it to pull the keywords from the page and then spit them out in a div, but am not sure how to go about it - I know how I could do it if it were php, but just not so good at jquery.
I've created my variable "keywords"
var keywords = jQuery("meta[name=keywords]").attr("content");
Now how do I go about doing a foreach for it to append the div "tagCloud" like this:
<div class="tagCloud" id="tagCloud">
Keyword 1 \n
Keyword 2 \n
Keyword 3 \n
</div>
and so forth.. if someone could help me, that'd be fantastic :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您希望云关键字成为链接(锚点):
Assuming you want the cloud keywords to be links (anchors):
我会这样做:
I'd do this :