运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").load("demo_cd_catalog.xml",function(response, status){ if (status == "success"){ $("div").html("<ol></ol>"); $(response).find("artist").each(function(){ var item_text = $(this).text(); $('<li></li>').html(item_text).appendTo('ol'); }); alert("There are " + $(response).find("cd").length + " CDs") } }); }); }); </script> </head> <body> <p>Artists</p> <div></div> <button>Get CD info</button> <p>The XML file used in this example is <a href="demo_cd_catalog.xml" target="_blank">demo_cd_catalog</a></p> </body> </html>