这是我的 JavaScript 中的代码。 function ViewLookUpPayme-6ren">
gpt4 book ai didi

Javascript:将 asp.net 按钮可见性设置为 false

转载 作者:行者123 更新时间:2023-11-28 07:40:51 26 4
gpt4 key购买 nike

我无法使用 JavaScript 隐藏我的按钮,我的代码是这样的。 (我使用图像作为按钮)

<img alt="" src="images/search-icon.png" width="16" height="16" style="display: inline;height:16px;cursor:pointer; width: 16px;" onclick="ViewLookUpPayment('<%=btnShowCorpCode.ClientID %>');" />

这是我的 JavaScript 中的代码。

function ViewLookUpPayment(bShow)
{
var button1 = document.getElementById(bShow);
button1.style.visibility = "visible";
}

每次我单击图像时都会弹出此运行时错误

enter image description here

我不明白为什么会出现运行时错误,任何人都可以帮助我解决这个问题吗?

最佳答案

您是否为图像标签设置了“id”属性?

可能“document.getElementById(bShow)”返回“undefined”。尝试检查“var button1”是什么。(示例:console.log(button1))

关于Javascript:将 asp.net 按钮可见性设置为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28038494/

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