我试图在页面 id 为 true 时运行一个函数,该函数运行良好,但我无法获取该函数的值。
我想要实现的是我想将日历数据中的图像 URL 加载到 id 为 true 的页面中,例如如果 (page1) 为 true 那么我想在该页面中对该图像 id 进行查询搜索并加载来自日历数据的图像。
它 getImageUrl(events[0].img);给了我正确的图像 URL,但是当我在图像 URL 中运行此函数时,if (page.id === "page1") {getImageUrl()}图像 URL 是未定义的。有没有办法或不同的解决方法?这可以吗?请建议我。我对开发还很陌生。
document.addEventListener("init", function (event) {
let page = event.target;
if (page.id === "page1") {
// if page id is true this function will execute but im not able to get the image says undefined how do i get the function working right.
getImageUrl();
} else if (page.id === "page2") {
//do something
}
});
//The below Queryselector id is avialble only for PAGE 1 where i want to run this function.
function getImageUrl(url) {
document.querySelector("#image-div").innerHTML += `<img src="${url}" />`;
}
//LOAD Calender and passing json ImageURLdata into the getImageUrl function
function loadCalender() {
$("#container").simpleCalendar({
onCalendarLoad : function (date, events) {
getImageUrl(events[0].img);
console.log(events[0].img);
}
}
大话西游666
陪伴而非守候
相关分类