ID 未定义,但事实并非如此?

发布于 2024-12-17 07:50:50 字数 164 浏览 0 评论 0原文

请看看这个小提琴: http://jsfiddle.net/DHts6/1/

为什么这么说未定义,即使 id = "foo" 已设置!

谢谢

Please look at this fiddle: http://jsfiddle.net/DHts6/1/

Why does it say undefined, even though the id = "foo" is set!

Thanks

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

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

发布评论

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

评论(3

我们的影子 2024-12-24 07:50:50

您不需要 $(this).id,只需执行 this.id 即可。

原因是 $ 创建了一个没有 .id 属性的 jQuery 对象。在 jQuery 中,您可以使用 attr $(this).attr('id')

http://jsfiddle.net/DHts6/5/

You don't need $(this).id, just do this.id.

Reason for this is that $ creates a jQuery object that doesn't have .id property. In jQuery you would use attr $(this).attr('id')

http://jsfiddle.net/DHts6/5/

别再吹冷风 2024-12-24 07:50:50

使用 this.id $(this).id:

http://jsfiddle.net/maniator/DHts6/2/

Use this.id not $(this).id:

http://jsfiddle.net/maniator/DHts6/2/

薄情伤 2024-12-24 07:50:50
$(document).ready(function(){
$('b.edit').click(function(){
        $(this).hide().after('<form action = "foo.php" method = post><input name = "field" type = "text" value = "'+$(this).attr('id')+'"/><input type="text" name = "period" class="editP" value="'+$(this).html()+'" /><input type = "submit" value = "Submit!!" /></form>');
        $('.editP').focus();
    });
    $('.editP').live('blur', function(){
        $(this).hide().prev('b.edit').html($(this).val()).show();
    });
});
$(document).ready(function(){
$('b.edit').click(function(){
        $(this).hide().after('<form action = "foo.php" method = post><input name = "field" type = "text" value = "'+$(this).attr('id')+'"/><input type="text" name = "period" class="editP" value="'+$(this).html()+'" /><input type = "submit" value = "Submit!!" /></form>');
        $('.editP').focus();
    });
    $('.editP').live('blur', function(){
        $(this).hide().prev('b.edit').html($(this).val()).show();
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文