我有a.php文件其中是一個div中的內容是要顯示使用Jquery這是行不通的。它不顯示jQuery的內容 一個div以及他們的jQuery中的annchor標籤onhooking它的內容div是一個iframe(在b.php)與divs內容使用ajax這應該工作,但我不知道是難道不是工作。無論是a.php只會和b.php是在同一文件夾jquery懸停與阿賈克斯不工作
無論在a.php只會和b.php:
a.php只會:
$("document").ready(function()
{
$("#pcontent").html('');
$("#pcontent").append('<div class="product"><div class="title1"><div class="title">fdfsfsd</div><div class="title"> <a class="reference">sdfsf</a></div><div id="showdata"></div></div></div>');
$("#pcontent").fadeIn(1);
$(".reference").hover(function()
{
$("#showdata").css("display","block");
$.ajax({
url:"b.php",
type:"GET"
});
});
});
<div id="pcontent"></div>
b.php:
$("document").ready(function()
{
$("#pcontent").html('');
$("#pcontent").append('<div class="product"><div class="title1"><div class="title"><b> ghgj</b></div><div class="title"> hjhk</div></div></div>');
$("#pcontent").fadeIn(1);
});
<iframe id="pcontent" width="100px" height="10px"></iframe>
任何人都可以讓我知道我是錯的還是有更好的方法來實現它?
你包含jQuery嗎? – Albzi
雅使用...已更新代碼 – hir
你爲什麼包括jQuery兩次?這導致問題 – szpic