jQuery:加载txt文件并插入div

我想加载一个* .txt文件,然后将内容插入div。这是我的代码:

js:

$(document).ready(function() {

$("#lesen").click(function() {

$.ajax({

url : "helloworld.txt",

success : function (data) {

$(".text").html(data);

}

});

});

});

的HTML:

<div class="button">

<input type="button" id="lesen" value="Lesen!" />

</div>

<div class="text">

Lorem Ipsum <br />

</div>

文本文件:

im done

如果我点击按钮萤火虫报告以下错误:

Syntax-Error

im done

我不知道该怎么办 :-(

回答:

您需要添加一个数据类型-http:

//api.jquery.com/jQuery.ajax/

$(document).ready(function() {

$("#lesen").click(function() {

$.ajax({

url : "helloworld.txt",

dataType: "text",

success : function (data) {

$(".text").html(data);

}

});

});

});

以上是 jQuery:加载txt文件并插入div 的全部内容, 来源链接: utcz.com/qa/406272.html

回到顶部