当有人单击它时,我有名为 onclick="shippingMethodStep.save()" 的单选按钮输入 onclick,它会将我的运费添加到 pagecheckout 中的总帐单中。
我希望在不单击收音机的情况下自动调用函数“shippingmethodstep.save()”
这是单选按钮代码:
<input name="shipping_method" type="radio" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> onclick="shippingMethodStep.save()"/>
我已经搜索并尝试通过将 onclick 更改为 onload 或添加 shippingMethodStep.save() 来自动调用它,但它不起作用。我想我把脚本写错了,因为我是 javascript 的新手。
你能为此提供建议吗?
谢谢