使用jquery在IE中的td标签内添加文本
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题出在你的选择器上吗?你需要一个“。”选择课程,例如:
Is the problem in your selector? You need a "." to select on classes, so like:
您在选择器中缺少句点。
另外,您根本不需要循环,
text
方法设置所有匹配元素的文本: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: