如何使用jquery $ get()从外部网站将文本文件导入javascript?

时间:2010-04-28 03:50:07

标签: javascript jquery get

点击以下脚本中的按钮时, http://tanguay.info/knowsite/data.txt 文件的内容中应加载并将其显示在屏幕上。

什么是正确的语法合成,以便.get()函数从外部网站检索数据并将其放入#content?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <script type="text/javascript"
        src="http://www.google.com/jsapi"></script>
        <script type="text/javascript">
            google.load("jquery", "1.3.2");
            google.setOnLoadCallback(function() {
                $('#loadButton').click(loadDataFromExernalWebsite);
            });
            function loadDataFromExernalWebsite() {
                $('#content').html('new content');
                //$.get("http://tanguay.info/knowsite/data.txt", function(data) { alert(data); }, );
            }
        </script>
    </head>
<body>
    <p>Click the button to load content:</p>
    <p id="content"></p>
    <input id="loadButton" type="button" value="load content"/>
</body>
</html>

1 个答案:

答案 0 :(得分:2)

您是否考虑过使用jquery load

我将a little code for a twitter app that loads第二个文件与jquery load放在一起。