如何创建多个div标签
我创建了一个图像....我必须将 15 个 div 标签排成一排(总共有 8 行),并且图像上的透明颜色彼此相邻。当我将鼠标悬停在透明 div 标签上时,应该会出现另一个 div 标签,给我一条不同的消息。因为我不知道 flash,所以我尝试使用 CSS 和 JQuery。请给我一个想法如何做到这一点???创建单个 div 标签可以完成这项工作...但是是否有其他选项可以创建多个 div 标签....
[DIV TAGS] ........ [DIV TAGS]
[DIV TAGS] .. ..... [DIV 标签]
I have created an image.... i have to place 15 div tags in a row (totally i have 8 rows) with transparent color next to one another on the image. when i hover the transparent div tags, another div tags should appear giving me a different message. Since i dont know flash i am trying to work with CSS and JQuery. Please give me an idea of how to do this??? Creating a single single div tags can do the work... but is there any other option to create multiple div tags....
[DIV TAGS] ........ [DIV TAGS]
[DIV TAGS] ....... [DIV TAGS]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 jQuery 中,你可以使用
$('#div1').append( $('
') );
将一个 div 添加到另一个 div 中,例如:
将添加一个 div当鼠标进入时,div 的 id 为“div1”。您可能需要检查先前创建的 div 是否存在,除非您想要检查所有地方,并且可能希望在鼠标离开时删除它们。
in jQuery you can append a div to another one using
$('#div1').append( $('<div />') );
So something like:
will add a div to div with id 'div1' when the mouse enters it. You'll probably need to check for the existence of a previously created div, unless you want then all over the place, and might want to remove them when the mouse leaves.