嗨 我有一個jQuery的onload函數,附加一個基於類名的一些內聯鏈接的鼠標功能調用,也我會加載一些html內容動態使用ajax,但基於以上的類名函數調用附件不能正常使用的動態HTML,如何解決這個..如何附加動態html的事件回調
我的代碼如下所示(實際上在我的代碼加載圖像,而不是簡單的鏈接)
$(function(){ $(".highlight").mouseover(function(){ $(this).css("background-color", "rgb(255,255,0)"); }); $(".highlight").mouseout(function(){ $(this).css("background-color", "rgb(255,255,255)"); }); }); $(function(){ //ajax call // set the ajax return value inside dynamic div $(".dynamic").html(""+new Date()+""); }); <body> <div> <a href="#" class="highlight">link1</a> <a href="#" class="highlight">link2</a> <a href="#" class="highlight">link3</a> </div> <div class="dynamic"></div> </body<
謝謝 venkat papana
這是偉大的工作添加鼠標懸停.. :)非常感謝你戴夫 – 2011-03-18 18:29:17
很高興聽到它! ...你可以感謝jQuery podcast瞭解它的任何事情:-) – 2011-03-18 18:32:57