Is it possible to update a xml file using jQuery?
Is it possible to update a xml file using jQuery? Or do i have to use serv开发者_JAVA技巧er side scripting to achieve it?
Thank You
You'll need to use some kind of server-side scripting (PHP, ASP.NET, ColdFusion, etc.) to edit any files on disk.
yes manipulate your xml as you would manipulate your DOM
var jqXML = $(xmlSource);
jqXML.find(yourNodeName).attr(attribute,value);
for example
then repost your data to the server
精彩评论