我如何定义第一个html的变量到第二个html的元素[duplicate]

bxgwgixi  于 2022-11-27  发布在  其他
关注(0)|答案(1)|浏览(125)

此问题在此处已有答案

How to call multiple JavaScript functions in onclick event?(14个答案)
昨天关门了。
位于index.html
第一个
在payment.html
第一次
我的主要目标是通过元素从payment.html页面定义按钮的id,但是当我单击按钮时,什么都不起作用。

sqserrrh

sqserrrh1#

尝试将第一部分更改为:

function pay(id)
{
    localStorage.thing = id;
    window.location.href = 'payment.html'
}

而减价到这个:

<button type="button" id="opt1" onclick="pay(this.id)">
  Button text
</button>

相关问题