每次点击链接时更改变量

发布于 2024-10-21 18:26:21 字数 511 浏览 0 评论 0原文

链接:

<ul id="topics">
<? while ($row = mysql_fetch_object($result)) { ?>
<li>- <a href="#" title="<?=$row->t_topic;?>"><?=$row->t_topic;?></a></li>
<? } mysql_free_result($result); ?>
</ul>

jQuery 代码:

$(function() {
    $("a").click(function(){
        var title = $("a").attr("title");
        $("#main").html(title);
    });
});

每个链接的“标题”都不同。当我单击链接时,它不会读取 var 'title'。

links:

<ul id="topics">
<? while ($row = mysql_fetch_object($result)) { ?>
<li>- <a href="#" title="<?=$row->t_topic;?>"><?=$row->t_topic;?></a></li>
<? } mysql_free_result($result); ?>
</ul>

jQuery code:

$(function() {
    $("a").click(function(){
        var title = $("a").attr("title");
        $("#main").html(title);
    });
});

'title' is different on every link. When I clicked a link, it doesn't read var 'title'.

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

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

发布评论

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

评论(1

千纸鹤 2024-10-28 18:26:21

该代码需要从单击的特定 a 标记中读取标题。这个简单的改变应该可以做到:

$(function() {
    $("a").click(function(){
        var title = $(this).attr("title"); // Note "this" here
        $("#main").html(title);
    });
});

The code needs to read the title from a specific a tag that was clicked upon. This simple change should do it:

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