如何创建多个div标签

发布于 2025-01-02 09:09:46 字数 287 浏览 0 评论 0原文

我创建了一个图像....我必须将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见你 2025-01-09 09:09:46

在 jQuery 中,你可以使用 $('#div1').append( $('

') ); 将一个 div 添加到另一个 div 中,

例如:

$('#div1').bind('mouseenter',function() {
 $(this).append( $('<div />', {
  // attributes for new div    
  }));
});

将添加一个 div当鼠标进入时,div 的 id 为“div1”。您可能需要检查先前创建的 div 是否存在,除非您想要检查所有地方,并且可能希望在鼠标离开时删除它们。

in jQuery you can append a div to another one using $('#div1').append( $('<div />') );

So something like:

$('#div1').bind('mouseenter',function() {
 $(this).append( $('<div />', {
  // attributes for new div    
  }));
});

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文