gpt4 book ai didi

javascript - 未捕获的类型错误 : Cannot set property 'src' of null for ImageButton

转载 作者:行者123 更新时间:2023-11-30 16:11:39 24 4
gpt4 key购买 nike

我搜索过类似的问题,但没有找到适合我的问题。

我想在特定条件下 (t>80) 更改 ImageButton 的 ImageURL,但我得到的是Uncaught TypeError: Cannot set property 'src' of null。我的<head>代码是:

    $(document).ready(function () {
//doing other stuffs
setInterval(function () {

$(".industrial.tank.size.one").each(function () {
$(this).industrial(t);

if (t > 80) {

// document.getElementById('btnV11').ImageURL = "~/Images/Valve/Valve-gray-left.png";
document.getElementById('btnV11').src = "../../Images/Valve/Valve-gray-left.png";
});
}, 3000);
});

并在<body> :

<asp:ImageButton ID="btnV11" runat="server" Height="51px" ImageUrl="~/Images/Valve/Valve-alarm-left.gif" Width="53px" OnClientClick="ShowControlPanel_P11(); return false;"/> 

为什么会出现此错误?

最佳答案

ID 将与您在服务器端代码中设置的不同。替换 btnV11<%= btnV11.ClientID %>

$(document).ready(function () {
//doing other stuffs
setInterval(function () {

$(".industrial.tank.size.one").each(function () {
$(this).industrial(t);

if (t > 80) {

// document.getElementById('btnV11').ImageURL = "~/Images/Valve/Valve-gray-left.png";
document.getElementById('<%= btnV11.ClientID %>').src = "../../Images/Valve/Valve-gray-left.png";
});
}, 3000);
});

关于javascript - 未捕获的类型错误 : Cannot set property 'src' of null for ImageButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36156310/

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