我無法弄清楚如何正確格式化.load
函數與我正在做的事情。正確格式化jQuery .load函數時首先使用響應
一切工作正常,如果我提供的URL,但無法讓它工作沒有錯誤時首先使用響應。
這裏是工作的:的
$("#postholder #" +response.postid).load("viewbuild.php?id=22 #" +response.postid, function() {
但不是直接給URL,我想用我回一個網址。
所以最好是這樣的:
$("#postholder #" +response.postid).load(response.pageurl "#" +response.postid, function() {
我也試過這樣:
$("#postholder #" +response.postid).load(response.pageurl + "#" +response.postid, function() {
在一個意義上的作品,但不加載指定的股利。而是簡單地加載整個頁面。
但這當然不起作用。任何人都可以給我這樣的方式嗎?
您忘記了'+'。應該是:'$(「#postholder#」+ response.postid).load(response.pageurl +「#」+ response.postid,function(){' – Niklas
剛剛更新了這個問題,試過這個,但是它加載了整個頁面時,這樣做,並不加載指定的分區。 – Lovelock