gpt4 book ai didi

javascript - 如何将图像从一个 html 页面更改为另一个?

转载 作者:太空宇宙 更新时间:2023-11-04 01:50:29 25 4
gpt4 key购买 nike

所以我真正想要的是,当我把我的 PIN 变量更改为另一页上的图片时,这是我的代码:PAGE 1

<html>
<title>page 1</title>
<head><link rel="stylesheet" type="text/css" href="csspage.css">
<script type="text/javascript">
var number;
var pin = "";
function change(){
if (pin == "1234") {
window.open("page2.html", "_self");
}
if (pin="2345") {
window.open("page2.html", "_self");
}
<body>
<input type="password" id="password"/>
</body>
</html>

这可以正常工作,但如果 PIN 是 “2345”,我一直在尝试进行第二次 ping 以更改第 2 页中的一张图像。这是我试过的代码:

if (pin="2345") {
window.open("page2.html", "_self");
document.getElementById("photo").src="page2.html".setAttribute("style","display:none");
document.getElementById("photo2").src="page2.html".setAttribute("style","display:block");

目的是,如果图钉是一个,则显示一个人的一张照片,如果图钉是另一个,则将其更改为其他用户,但图片需要从第 1 页开始更改。我有什么办法可以做到这一点?

这是不可能的,更好的想法是将它们放在一个页面中并隐藏和显示它们。

感谢 RecencyEffect

最佳答案

试试这个:

if(pin === "2345") {

代替:

if (pin="2345") {

添加三重 = 以确保其值和类型相等。

关于javascript - 如何将图像从一个 html 页面更改为另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43604604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com