我尝试.click()
按照此处所述实现:https ://github.com/ampproject/worker-dom/blob/main/web_compat_table.md 。HTMLElement.click()
放大器支持。
但是当我实施它时,什么也没有发生。
我已经在标题上放置了 amp-script 标签。
例子:
<script id="btn-obs" type="text/plain" target="amp-script">
const btn = document.querySelector('#btnloadmore');
btn.click();
</script>
<amp-script script="btn-obs" layout="responsive" height="300" width="300" data-ampdevmode>
<input class="load-more" id="btnloadmore" role="button">
</amp-script>
并且没有错误。
我该如何解决这个问题?