Problem with page loading content, inside content

前端 未结 3 1623
灰色年华
灰色年华 2021-01-26 17:24

if you visit here: Example You will see my problem.

The page loads, then loads all the same content within a div id=content

Have a look at the sourc

相关标签:
3条回答
  • 2021-01-26 17:30

    I agree with @Andrew, but just a suggestion -- if you don't want the page to "snap" when the AJAX is loaded, set your height in css to something like 100%

    0 讨论(0)
  • 2021-01-26 17:48

    You are incorrectly building fragment. In you code first letter truncated in query.

    Correct code:

    fragment = event.value.substring(2);
    
    0 讨论(0)
  • 2021-01-26 17:57

    This line of code:

    $('.content').load('http://laynestaley.co.uk/test/'+fragment+'?ajax=1');
    

    Is actually loading the entire page into <div class='content'></div>. Your server-side code must not be executing the way you expect it to with that AJAX call (It's just loading the index page of /test/ again).

    0 讨论(0)
提交回复
热议问题