wordpress に問題があります。jquery を使用して xml ファイルを読み取る関数を作成しましたが、不明な理由でファイルを読み取れませんでした。URL: http://www.incakingdom.com/lista-de-paginas/machu-picchu/ オレンジ色のボタン (reservar ahora) は関数を呼び出すボタンで、これは JavaScript コードです:
$("#reservar").click(function(){
var pathactual = location.pathname;
alert("holaaaa");
$.get("../../booking.xml", function(xml){
alert("cargó el xml");
$(xml).find("urldirige").each(function() {
if($(this).find("url").text() == pathactual) {
var text1="http://";
document.location.href=text1+location.host+$(this).find("reserva").text();
}
});
});
});
そして、これはxmlファイルです:
助けてくださいありがとう!