2 回答
TA贡献1797条经验 获得超4个赞
您可以将 id 设置为 span,然后将文本设置为 300 或 100
<span id="price">$100</span>
<scrit>
document.getElementById("price").innerHTML = "$300";
</script>
TA贡献1865条经验 获得超7个赞
使用参数发送GET请求pay.html:
window.location='pay.html?amount=100';
通过JS访问参数:
var url= new URL(document.location).searchParams;
var amount=url.get("amount");
var totalamt = '$'+ amount;
$('#total').html("<span style='float:right'>" + "Total:" + totalamt + "</span>");
你的html.html:
<button onclick="myFunction1()" type="submit" id="one">BUY</button>
<button onclick="myFunction2()" type="submit" id="two">BUY</button>
function myFunction1() {
window.location='pay.html?amount=100';
};
function myFunction2() {
window.location = 'pay.html?amount=300';
};
支付.html:
<span class="title" id="total"></span>
var url = new URL(document.location).searchParams;//Getting search params
var amount = url.get("amount"); //Getting value of amount from parameters
var totalamt = '$'+ amount;
$('#total').html("<span style='float:right'>" + "Total:" + totalamt + "</span>");
这也可以在没有 Real 应用程序的情况下工作。
添加回答
举报