Javascript读取txt文件on

时间:2017-12-23 05:09:52

标签: javascript jquery html

我通过网络搜索但我只获得<input type="file">的搜索结果。我也得到了我想要的但是由于某种原因,它只在我使用netbeans并单击运行项目按钮时才有效。我需要的是即使没有运行netbeans也能工作的东西。

1 个答案:

答案 0 :(得分:0)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
        $("body").load("file.txt");
});
</script>