我有一个 index.html 文件,它使用下面的 JQuery 在打开页面时将菜单页面加载到 div 中。下面代码中的侦听器可以处理我的 index.html 文件中的任何元素,但它们不能处理由 jquery 脚本加载的文件中的元素。
这是我的jQuery代码
$(document).ready(function() { // this runs as soon as the page is ready (DOM is loaded)
$("#leftmenu") // selecting "div" (you can also select the element by its id or class like in css )
.load("http://www.maa.intranet.bae.co.uk/ma/Content/bus_serv/integrated_services/supply_chain_ss/information_assurance/leftmenu.html"); // load in the file specified
$("#content").load("WebContent/welcome.html");
$("div.menuitem").hover(
function () {
$(this).css({"background-color":"red"});
},
function () {
$(this).css({"background-color":"blue"});
}
);
$(".menulink").click(function(){
alert("This is a test");
});
});