使用jquery在IE中的td标签内添加文本

发布于 2024-11-26 21:58:06 字数 257 浏览 1 评论 0原文

我有以下 HTML 代码,

<td class="testclass"> </td>

我正在尝试使用以下 jquery:

$('testclass').each(function () {
$(this).text("testtext");
});

此代码在 FF 中是工作文件,但在 IE 中不是。谁能告诉我如何在 IE 中解决这个问题?

I have the following HTML code

<td class="testclass"> </td>

I'm trying with the following jquery:

$('testclass').each(function () {
$(this).text("testtext");
});

This code is working file in FF but not in IE. Can any one let me know how i can resolve this in IE?

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

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

发布评论

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

评论(2

清醇 2024-12-03 21:58:06

问题出在你的选择器上吗?你需要一个“。”选择课程,例如:

$('.testclass').each(/*etc*/);

Is the problem in your selector? You need a "." to select on classes, so like:

$('.testclass').each(/*etc*/);
青春如此纠结 2024-12-03 21:58:06

您在选择器中缺少句点。

另外,您根本不需要循环, text 方法设置所有匹配元素的文本:

$('.testclass').text("testtext");

You are missing a period in the selector.

Also, you don't need to loop at all, the text method sets the text of all matched elements:

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