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>