2010-08-02 96 views
1

我可以把html包含在Jquery裏面嗎?Html包括Jquery裏面

下面是代碼:

$(document).ready(function(){ 

$(".photo").hoverIntent(function() { 
    $(this).html('CAN I PLACE HERE A HTML INCLUDE?'); 
}, function() { 
    $(this).html('<img src="' + $(this).attr("title") + '" width="248" height="186" style="border-bottom: 1px solid #2B2B2B;"/>'); 
}); 

}); 
+0

您是否嘗試過並且遇到問題? – spinon 2010-08-02 08:44:59

+0

你是什麼意思? SSI? – 2010-08-02 08:45:08

+1

「HTML INCLUDE」是什麼意思?頁面?一塊html? - 第二個應該工作。 – Ties 2010-08-02 08:46:34

回答

3

使用load功能:

$(this).load('file.html'); 
0

不好,當我使用負載(file.html);它只會將我的網站重定向到該文件。

我只是想用jquery替換我的頁面上的某些html

+1

實際上它將文件加載到$(this)中,您需要指定$(this)是什麼。通常它是您原始文檔的一個片段。 – Drejc 2011-03-03 09:04:25