使用最近的jQuery版本将jQuery文本加载到Div中

时间:2015-12-06 10:10:00

标签: jquery

以下代码不起作用:

<!DOCTYPE html>
<html dir="ltr">

<head>
<script type="text/javascript"  src="http://code.jquery.com/jquery-2.1.3.js"></script>

<script>
$(document).ready(function() {
    $( "#myText" ).load( "words.txt" );
});
</script>

</head>

<body>

<div id="myText">The original text</div>

</body>

</html>

我试图用文本文件(words.txt)替换Div中的文本。但是,如果我将库下载中的jquery版本从2.1.3更改为1.11.3,它确实有效!

这个方法在最近的jQuery版本中不再有效吗?如果是这样,我应该使用什么方法来获得相同的结果。我想使用最新版本的jQuery,因为同一页面的其他部分需要以后的功能。

任何帮助或建议表示赞赏。 - 迈克

0 个答案:

没有答案