ie8中的jquery父选择器问题

时间:2011-11-06 20:21:06

标签: jquery internet-explorer-8 parent

Jquery父选择器在IE8中不起作用..它正在与其他浏览器一起使用(chrome,firefox,opera,safari)

我正在使用它:

comment = $(this).parent().parent().parent().find(".commentWrapper");

有什么想法吗?

- 编辑 -

抱歉误导 结果错误是下一行;

postId = $(this).parent().parent().find('input[name = "postId"]').val();

IE Developer工具显示此错误:

Object doesn't support this property or method

但是如果我宣布像post postId这样的postId,它的工作正常......但我不明白究竟是什么问题?

1 个答案:

答案 0 :(得分:1)

如果你知道父选择器,最好使用父母('selector')。 http://api.jquery.com/parents/