将段落的内容从.txt文件粘贴到文本区域

时间:2014-09-25 20:58:15

标签: javascript html

所以我编辑了很多次,但基本上我想将文本文件中的段落插入div。到目前为止,我已经能够使用Jqquery BUT而不是hello world将“我的”更改为“hello world”我希望从文本文件中获取段落。

谢谢

这是我到目前为止所拥有的

<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script>
$("#test").html("Hello world")
</script>

1 个答案:

答案 0 :(得分:1)

我花了一段时间,但在这里。我创建了一个名为test.txt&amp;的新外部文本文件。这段代码允许我将这个.txt文件中的文本直接拉到我的div标签中。现在我可以更新我的网站,无需任何硬编码。这是代码。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
    $(document).ready(function(){
    $("#test").load("test.txt");//load the text from your text file
});
</script>
</head>

<body> 
    <div id="test">
        <p>its mer</p>
    </div>
</body>

我希望有人发现这很有用,感谢所有帮助我解决这个问题的人。