<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function Allert(content) {
alert(content);
}
$(document).ready(function(){
$.ajax({
url: 'data.txt',
cache: false,
beforeSend: function() {
$('#text').html('');
},
success: function(html){
$("#text").html(html);
var content = $("#text").text();
Allert(content);
}
});
});
</script>
</head>
<body>
<div id="wrap">
<div id="content">
<textarea id="text" disabled></textarea>
</div>
<div id="footer">
</div>
</div>
</body>
</html>
<body
</html>