You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
521 B
HTML
19 lines
521 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>充值</title>
|
|
<script>
|
|
window.onload = function() {
|
|
document.getElementById("auto-submit-form").submit();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="auto-submit-form" action="{{.Action}}" method="{{.Method}}">
|
|
<!-- Your form fields go here -->
|
|
<input type="hidden" name="paytype" value="{{.data.PayType}}">
|
|
<input type="hidden" name="field2" value="value2">
|
|
<input type="hidden" name="field2" value="value2">
|
|
</form>
|
|
</body>
|
|
</html> |