外部源文本插入div

时间:2014-05-06 08:40:49

标签: javascript jquery html css

是否可以将外部.txt文件中的文本添加到我网站中的div并将其格式化为标题然后文本,还会有一张图片,类似于新闻报道。谢谢。

在持有div中的3个单独的div中将有三个故事。我对div的编码如下。我试图对此进行研究,但似乎无法在我的知识范围内找到实现这一目标的方法。

<article>
    <img src="slide1.png" alt="slide 1" width="980" height="550" />
    <div class="contents">
        <div style="float: left; width: 50%;">
            <div style="float: left; background-color: yellow; text-align: center; width: 100%;">
                50%
            </div>
        </div>
        <div style="float: left; width: 25%;">
            <div style="background-color: red; text-align: center;">
                25%
            </div>
            <div style="background-color: blue; text-align: center;">
                25%
            </div>
        </div>
    </div>
</article>

提前致谢

1 个答案:

答案 0 :(得分:0)

$(function(){
   $('div').load('textfile.txt');
})