jQuery能不能不在ajax的帮助下,纯用jQuery读取txt文本信息写入div标签中?
展开全部
可以 但是注意编码
<script>
$(function(){
$.ajax({
type:"get",
url:"新人练字笔墨纸推荐.txt",
dataType:"text",
async:true
}).done(function(data){
$("#one").html(data);
});
$.ajax({
type:"get",
url:"新人练字笔墨纸推荐utf-8.txt",
dataType:"text",
async:true
}).done(function(data){
$("#two").html(data);
});
});
</script>
</head>
<body>
<div id="one" style="width: 600px;height: 400px;background: greenyellow;margin: 10px;;">
</div>
<div id="two" style="width: 600px;height: 400px;background: greenyellow;margin: 10px;;">
</div>
</body>
<script>
$(function(){
$.ajax({
type:"get",
url:"新人练字笔墨纸推荐.txt",
dataType:"text",
async:true
}).done(function(data){
$("#one").html(data);
});
$.ajax({
type:"get",
url:"新人练字笔墨纸推荐utf-8.txt",
dataType:"text",
async:true
}).done(function(data){
$("#two").html(data);
});
});
</script>
</head>
<body>
<div id="one" style="width: 600px;height: 400px;background: greenyellow;margin: 10px;;">
</div>
<div id="two" style="width: 600px;height: 400px;background: greenyellow;margin: 10px;;">
</div>
</body>
追问
你好,你这个还是用到ajax的运行加载呢,需要服务器支持,能脱离这个限制,单纯的加载?
追答
我这没用到服务器啊 ,你看请求路径 ,是和html一个级别的txt文件啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询