Раньше этот код все парсил и чудесно работал.Сейчас же выдает ошибку такого рода
XMLHttpRequest cannot load file:///D:/wamp/www/test/testing.xml. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
Я то понимаю что значит эта ошибка но не знаю как когректно по другому прописать путь к файлу.Полазил в нете и нашол все тоже как и у меня.
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=cp1251" />
<title>Test</title>
<script type="text/javascript">
var g_xml;
$(document).ready(function(){
$.ajax({
type: "GET",
url: "test.xml",
dataType: "xml",
success: vasa
});
var button2 = document.getElementById("id2");
button2.style.display='none';
var button3 = document.getElementById("id3");
button3.style.display='none';
function vasa(xml) {
ResultTextTrue=$(xml).find('ResultTextTrue').text();
ResultTextFalse=$(xml).find('ResultTextFalse').text();
attemptsanswer=$(xml).find('attemptsanswer').text();
g_xml=xml;
html='';
item=$(xml).find('questions').children();
for(i=0; i<$(item).length; i++){
html=html+"<div class='question' value='"+i+"'>";
variant='';
element=$(item).eq(i).children();
k=0;
title="<p>"+$(element)[0].textContent+"</p>";
ans=$(element).eq(1).children();
for(j=0; j<$(ans).length; j++){
variant=variant+"<input type='radio' value='"+k+"' name='question"+i+"'>"+$(ans)[j].textContent;
k++;
}
k=0;
html=html+title+variant+"</div>";
}
$('#queston').html(html);
var div = document.getElementById('divi');
div.style.border = $(xml).find('style').attr('border');
div.style.width = $(xml).find('style').attr('width');
div.style.height = $(xml).find('style').attr('hight');
div.style.padding = $(xml).find('style').attr('padding');
div.style.margin = $(xml).find('style').attr('margin');
div.style.position = $(xml).find('style').attr('position');
}
});
</script>
</head>
<body>
</body>
</html>
и сам xml
<?xml version="1.0" encoding="windows-1251"?>
<?xml-stylesheet href="style.css" type="text/html" ?>
<!DOCTYPE test SYSTEM "test.xml">
<test>
<style border="5px solid black" hight="350px" width="350px" padding="20px" margin="0px" position="relative" ></style>
<buttonstyle hight="40px" width="50px" position="fixed" marginleft="150px" ></buttonstyle>
<attemptsanswer>1</attemptsanswer>
<questions>
<item>
<question>Вопрос</question>
<answers>
<answer rating="1">Да3123</answer>
<answer rating="0">Не21312т</answer>
</answers>
</item>
<item>
<question>Вопрос1</question>
<answers>
<answer rating="0">Да</answer>
<answer rating="1">Нет </answer>
</answers>
</item>
<item>
<question>Вопрос2</question>
<answers>
<answer rating="0">хай </answer>
<answer rating="1">дой </answer>
</answers>
</item>
</questions>
<attemptext>Вы исчерпали количество попыток</attemptext>
<attemptext1>Пройдите тест ище раз</attemptext1>
<TextButton>Ответить на вопрос</TextButton>
<TextButton1>Стереть ответы</TextButton1>
<TextButton2>начать тест заново</TextButton2>
<TextButton3>Получить правильный ответ</TextButton3>
<ResultTextTrue>Ваш ответ верен!</ResultTextTrue>
<ResultTextFalse>Ваш ответ не верен!</ResultTextFalse>
</test>