尝试为AEM中的多个按钮组件实现onclick标记加载 需要有关最佳做法的建议。下面是我实现的方法。有人可以帮我吗。预先感谢!
<sly data-sly-test="${properties.tag}">
<script>
$(".input1-tag").click(function(e){
e.preventDefault();
var href = $(this).attr("href");
$("body").append("<img src=\" ${properties.tag @ context ='scriptString'} \" width="1" height="1" alt="" />");
window.location = href;
});
</script>
</sly>
<sly data-sly-test="${properties.optionaltag}">
<script>
$(".input2-tag").click(function(e){
e.preventDefault();
var href = $(this).attr("href");
$("body").append("<img src=\" ${properties.optionaltag @ context ='scriptString'} \" width="1" height="1" alt="" />");
window.location = href;
});
</script>
</sly>
<sly data-sly-test="${properties.thirdtag}">
<script>
$(".input3-tag").click(function(e){
e.preventDefault();
var href = $(this).attr("href");
$("body").append("<img src=\" ${properties.thirdtag @ context ='scriptString'} \" width="1" height="1" alt="" />");
window.location = href;
});
</script>
</sly>
答案 0 :(得分:0)
查看更多代码检查请求-https://codereview.stackexchange.com/的公寓
但是既然您在这里,我就可以想到以下几点-
.js
中的clientlibs
文件中。 sightly
或HTL
的主要目的是美化HTML标记并分离表示和逻辑问题。<body>
部分中有一个占位符标记,然后将其附加而不是直接附加到<body>
标记中,从而使您可以在以后将元素定位到其他位置的更多控制权。<img>
标记时您所做的只是修改src
属性,因此您可能已经在标记中添加了<img>
标记,最初可能隐藏并使用{{ 1}}函数来设置attr()
属性。