0

嗨,我对 jQuery 还是很陌生。我有一个 html 文件,其中包含我想从服务器上的文件中获取和填充的跨度。这是我的 HTML 文件:

<div class="home-page main">
<section class="grid-wrap" >
    <header class="grid col-full">
    <hr></hr>
        <p class="fleft">首頁</p>
    </header>

    <div class="grid col-one-half mq2-col-full">
        <span class="Welcome_Message"></span>
    </div>
    </section>
</div>

然后这是我的 jQuery 脚本文件:

$.get('texts/Welcome_Message.txt', function(data) {
    $('.grid span').html(data);
}).done(function() { alert("success"); })
  .fail(function() { alert("error"); });

我已经尝试在 DreamWeaver 中使用预览,它会正确填充和显示alert("success");消息。但是在浏览器中运行它(无论是哪一个)都会显示alert("error");并且 span 没有被填充。任何人都可以帮忙吗?

4

1 回答 1

0

我认为您只需立即将数据加载到 (.Welcome_Message) 中。虽然我不知道你为什么需要回复

<script>
$(document).ready(function () {
   $('span.Welcome_Message').load("texts/Welcome_Message.txt");
   });
</script> Also check this link  http://stackoverflow.com/questions/4208530/xmlhttprequest-origin-null-is-not-allowed-access-control-access-allow-for-file/
于 2013-06-06T01:38:15.310 回答