从文件中获取文本并输入到网页中的特定div

时间:2015-02-07 19:16:21

标签: javascript php html

我想有一个带有一些HTML代码的txt文件,例如: <p>Hi</p> <p>Hello</p> 并使用JavaScript或PHP来读取代码并将其输入到HTML文档中的特定div中。或者如果还有另一种更好的方法来编辑页面标题的HTML代码,例如在txt文件中,并且标题在网站的每个页面上都会发生变化,请告诉我,因为我不想让每个人都知道每当我对它做一个小改动时,就会改变这样的事情。谢谢!

1 个答案:

答案 0 :(得分:0)

使用php:

$content = file_get_contents('path/to/your/file.txt');
echo $content;

编辑以回答关于xml文件的@bakriawad, 你可以使用这样的东西:

$.ajax({
   type: "GET",
   url: "URL/TO/file.xml",
   dataType: "xml",
   success: function(xml){
      $('#myDiv').html($(xml).html());
   },
   error: function() {
      alert("An error occurred while reading XML file.");
   }
});

file.xml应如下所示:

<document>
  <p>Hi</p>
  <p>Hello</p>
</document>