如何为 href 属性内联颜色框提供动态变量

发布于 2024-08-27 01:10:02 字数 453 浏览 8 评论 0原文

如何更改内联颜色框“href”动态 就像我想要的那样,当我单击“tr”颜色框时,将其“标题”更改为“href” 并展示它 喜欢

<table>
    <tr title="project1">
        <td></td>
    </tr>
    <tr title="project2">
        <td></td>
    </tr>
</table>
<div id="project1" style="display:none">this is about project one</div>
<div id="project2" style="display:none">this is about project two </div>

How to change inline colorbox 'href' dynamic
like i want when i click on a 'tr' colorbox take it 'title' to 'href'
and show it
like

<table>
    <tr title="project1">
        <td></td>
    </tr>
    <tr title="project2">
        <td></td>
    </tr>
</table>
<div id="project1" style="display:none">this is about project one</div>
<div id="project2" style="display:none">this is about project two </div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

君勿笑 2024-09-03 01:10:02

您可以执行以下操作:

$("tr").click(function() {
   $("#" +  $(this).attr("title")).show();
});

单击行时,将获取标题属性,将其用作 ID 选择器并显示匹配的元素。如果您想在发生这种情况时隐藏其他内容,请为您的 div 提供一个类似 class="project" 的类,并在显示之前添加一个调用来隐藏测试,如下所示:

$("tr").click(function() {
   $(".project").hide();
   $("#" +  $(this).attr("title")).show();
});

You can do this:

$("tr").click(function() {
   $("#" +  $(this).attr("title")).show();
});

On row click, this takes the title attribute, uses it as an ID selector and shows the matching element. If you want to hide the others when this happens, give your divs a class like class="project" and just add a call to hide the test before showing, like this:

$("tr").click(function() {
   $(".project").hide();
   $("#" +  $(this).attr("title")).show();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文