我很难从 Javascript 创建新的 Elementor 块(在这种情况下,我从 URL 填充并插入列中的图像)。
我目前在我的页面中有使用 html 块的脚本,并且我设置了单击按钮时的操作。但是,我一直无法找到通过代码在网页上生成新元素块的示例。
我可以看看一个很好的例子吗?
如果这是一个新手问题,我很抱歉。
这是我正在尝试做的事情:
1)当一个按钮被点击时,清除页面的其余部分
2) 生成一个包含 4 个部分的新分组列
3)在列的每个部分中创建 1 个图像块
4) 使用来自 URL 的图像填充每个图像块
提前致谢!
<script>
document.addEventListener("DOMContentLoaded", function(event) {
jQuery('.ShowAllImages').click(function(){
ShowAllImages();
});
});
function ShowAllImages() {
//Clear the page below the button
//Create x amount of grouping sections within page
//Create y new elementor images in those sections
//Populate those y elementor image blocks with images
}
</script>