Nodejs jquery重新加载页面ejs的div部分

时间:2016-01-09 04:47:17

标签: javascript jquery html ajax node.js

我试图在ajax调用后使用jquery重新加载html页面的一部分,我尝试的所有内容都让我找不到404。 jquery.load不能与节点js一起使用吗?如果有的话,在没有重新加载整个页面的情况下重新加载一个div的解决方法是什么?

$.ajax({
        url: "http://localhost:3000/high",
        type: "GET",
        datatype: "jsonp",
        success: function(data){
            console.log(data);
            var highbtn = JSON.parse(data);
            console.log(highbtn);
            $('#high').load('/Public/userphotoview.ejs' + ' #high');


        },
        error: function(){
            console.log("error fetching data");
        }

0 个答案:

没有答案