Firefox 的 JQuery 问题:$('#element_id').html() 不起作用
hellow world
var value = $('#element_id').html()
有时会返回 "hello world"
,但并非总是如此。 val()
始终有效,但 html()
无效 这仅发生在 Firefox 中(始终在 Chrome 中有效)。有什么想法吗?
编辑 目前还没有弄清楚问题所在,但是一旦找到问题我就会发布结论!感谢您的回复。
<div id="element_id">hellow world</div>
var value = $('#element_id').html()
returns the "hello world"
sometimes, but not always. val()
always works, but not html()
This only happens in firefox (always works in Chrome). Any ideas?
EDIT
Still haven't figured out the problem yet, but I will post the conclusion once I have found it! Thanks for the responses.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为这个上一个问题可能对您有帮助。
PS 当你说它有时工作有时不工作时,div 的内容是否有一些变化?
I think this previous question might help you.
P.S. When you say it is sometime working and sometime not working, are there some changes going on the div's content ?
您可以尝试将其包装为超时...
看看它是否太早获取内容?
You could try wrapping it into a timeout...
See if it's getting the content far too early?
这使用 jQuery 1.4.4 有效。我还没有测试过其他版本。
请记住,.text 将仅返回 div 内的文本,而 .html 将返回 html 标签包围的文本。
This worked using jQuery 1.4.4. I haven`t tested with other versions.
Remembering that .text will return only the text inside the div and .html will return the text surrounded by the html tags.
完整的未更改代码供您尝试:
The complete unaltered code for you to try: