我的问题是在加载新页面时执行一个函数。我有两个页面(index.html 和 location_page.html)。在第一个中有一个标签列表。当用户单击此列表的一个元素时,他将被重定向到应动态加载相关信息的第二页。我尝试使用功能ready
,但它不起作用。这是我的 jQuery 代码
$("#location_title").ready(function(e){
console.log("executing the function");
});
这是HTML
<div class="location_info">
<div class="location_text">
<div id="location_title"></div>
<div id="location_description"></div>
</div>
<div class="location_img"><img src="./img/strutture01.jpg" class="location_image"/></div>
</div>
第一页也有这样的方法(我称之为“就绪”函数)并且它可以工作,但它在第二页上不起作用。