Ho creato un semplice file html con ajax semplice.Ajax in Jquery non funziona dal file locale
index.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; Charset=UTF-8">
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div id="content"></div>
<script>
function show()
{
$.ajax({
url: "2.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',1000);
});
</script>
</body>
</html>
File 2.html si trova nella stessa directory del file index.html . E contiene ad esempio:
<p>ssss hkl jh lkh <b>d1111</b></p>
Quando eseguo il index.html sul server web, tutto funziona. Ma se si esegue il file index.html sul computer come un file locale, ajax non funziona. Come sistemarlo?
è 'jquery.js' incluso accanto al' index.html'? –
Sei in Chrome? Chrome non ammette materiale ajax locale. – Jack