我有一个获取当前 URL 的按钮,然后将在 XML 中查找该 URL,这将返回一个 URL1 进行重定向。有什么问题?
$(document).ready(function () {
$("#leerxml").click(function () {
var urlactual = document.location.href;
$.get("students.xml", {}, function (xml) {
$(xml).find("urldirige").each(function () {
if ($(this).find("url").text() == urlactual) {
//do something
document.location.href = $(this).find("reserva").text();
}
});
});
});
});