今天做支付宝接口的集成,提交后获得了一段form代码:
<form name="punchout_form" method="post" action="https://openapi.alipay.com/gateway.do?......"><input type="submit" value="立即支付" style="display:none" ></form><script>document.forms[0].submit();</script>
以前是用webform开发,直接调用JS的document.write就好了。可是Blazor中没有document对象,该如何调用呢?
网友评论