无法粘贴侧边栏

时间:2014-06-17 18:28:37

标签: javascript jquery html css twitter-bootstrap

这是我的网站:http://readerproject.comuv.com/

我正在寻找一种方法来粘贴侧边栏。我这样做了:

$("#sidebar").affix({
  offset: { top: 0 }
});;

但这不起作用。侧边栏没有固定在它的位置。为什么会发生这种情况?我该如何解决这个问题?

P.S:我正在使用Bootstrap构建网站。

2 个答案:

答案 0 :(得分:1)

看起来count.php正在向页面添加另一个版本的jQuery,消灭了所有插件。

enter image description here

答案 1 :(得分:0)

我遇到了同样的问题,只是通过准备内部文件来解决。

public void ProcessRequest(HttpContext context)
    {
        string fname = String.Empty;
        if (context.Request.Files.Count > 0)
        {
            HttpFileCollection files = context.Request.Files;
            for (int i = 0; i < files.Count; i++)
            {
                HttpPostedFile file = files[i];                    
                fname = context.Server.MapPath("~/UserImageUploads/" + file.FileName);
                file.SaveAs(fname);
            }
        }
        context.Response.ContentType = "text/plain";
        context.Response.Write(fname);
        context.Response.StatusCode = 200;
    }