Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能够使用 jquery、xml 和 html 读取 xml 文件
但我需要用 jquery 更改 xml 中的标记值。
我只需要使用客户端脚本离线执行此任务
这很简单。
例如your_tag.attr('attribute_name'),如果您使用从 xml 节点读取,您只需your_tag.attr('attribute_name',value)写入该值。(这是标签属性值)
your_tag.attr('attribute_name')
your_tag.attr('attribute_name',value)
如果您想更改标签的所有子项(不是属性,而是标签的所有“内部”),只需编写your_tag.html('your_value')
your_tag.html('your_value')