这是Chrome浏览器抛出的消息错误,它在IExplorer和FireFox中运行良好
$ XMLHttpRequest cannot load file:///C:/Users/Lew/Documents/Human%20Staff/students.xml. Origin null is not allowed by Access-Control-Allow-Origin.
....我不知道为什么它如果已经定义变量就无法工作......
Chrome开发人员工具抛出的另一个错误信息:
$nombre: [Exception: ReferenceError: telefono is not defined]
$edad : [Exception: ReferenceError: telefono is not defined]
$telefono : [Exception: ReferenceError: telefono is not defined]
$carnet : [Exception: ReferenceError: telefono is not defined]
有任何想法要修复吗?
这是一段代码剪辑:
<pre><code>
// JavaScript Document
// File: leerXML.js
$(document).ready(function(){
$("#ContentArea").ready(function(){
$.get("students.xml",{},function(xml){ //Abrimos el archivo students.xml
// Crearemos un string HTML
HTMLcontent = '<br/><br/>';
HTMLcontent += '<table width="70%" border="1" cellpadding="0" cellspacing="0">';
HTMLcontent += '<th>Nombre</th><th>Edad</th><th>Telefono</th><th>Carnet</th>';
$('estudiante',xml).each(function(i) {
var nombre ='';
var edad='';
var telefono='';
var carnet='';
nombre = $(this).find("nombre").text();
edad = $(this).find("edade").text();
telefono = $(this).find("telefono").text();
carnet = $(this).find("carnet").text();
答案 0 :(得分:0)
您无法执行此操作,因为您从本地文件系统加载网站。您需要运行Web服务器以进行跨源请求(文件系统的原点为null,因为它没有域,并且永远不允许发出跨域请求)。
设置一个小型Web服务器并从中提供文件以进行测试。请参阅http://code.google.com/p/chromium/issues/detail?id=40787。