我的页面上有以下按钮。我希望在加载此页面时自动点击下方的按钮。我曾尝试在网上提出各种建议,但我无法找到解决方案。任何帮助表示赞赏。
<a data-bind="click: $root.addtocart" class="w-button btn-large"
style="text-decoration: none!important;" id="redeemButton">
Redeem Now
</a>
答案 0 :(得分:3)
直接在创建viewmodel时执行:
function MyViewModel(){
this.addtocart = function(){
//Some code
}
this.addtocart(); // <-- here
}
答案 1 :(得分:0)
你可以在你的javascript中添加一个就绪函数..
<script>
$("document").ready(function () {
window.getElementById("redeemButton").click();
});
</script>
&#13;