通过 JavaScript 更改 CDATA 字体标签的内联样式
我有一个通过 jquery 加载的 xml 文件来填充 jQuery 移动列表。一切工作都很好,除了我需要在页面内动态更改 CDATA
字体标记上字体颜色的内联样式。
我尝试过 document.getElementById("font").style.color = "#000000";
并且我还尝试使用 !important
。
这些都不起作用。有人还有其他建议吗?
I have an xml file that is loaded via jquery to populate a jQuery mobile list. Everything is working great except I need to change the inline styling of the font color on the CDATA
font tag dynamically within the page.
I have tried document.getElementById("font").style.color = "#000000";
and I have also tried to override the styling via the external CSS using !important
.
Neither of those are working. Does anyone have any other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,
getElementById()
永远不会起作用,因为它只针对元素的id
属性。您可以只给font
一个id
(如“myID”)并定位它吗?或者通过使用 jQuery,它只是
$('#myID').css('color','#000');
根据注释,而不是使用
id
,直接定位元素同样有效......Of course
getElementById()
is never going to work as it only targets theid
attribute of an element. Can you just givefont
anid
(like "myID") and target that instead?Or by using jQuery it would simply be
$('#myID').css('color','#000');
As per comments, instead of using an
id
, targeting the element directly is just as valid...