如何为 href 属性内联颜色框提供动态变量
如何更改内联颜色框“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
单击行时,将获取标题属性,将其用作
ID
选择器并显示匹配的元素。如果您想在发生这种情况时隐藏其他内容,请为您的 div 提供一个类似class="project"
的类,并在显示之前添加一个调用来隐藏测试,如下所示:You can do this:
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 likeclass="project"
and just add a call to hide the test before showing, like this: