在第一页:
<button type="button" onclick="myFunction()">click</button>
然后在另一个页面上:
myFunction() {
alert("working");
};
这是接收页面。
- 所有基本标签
<script>
function alert() {
alert("The Link Has Been Successful");
}
</script>
问题是:如何调用另一个页面上的另一个函数来提醒该页面<button onclick="????">
?
<body>
<button onclick="???" type="button">Alert on the other page</button>
</body>