gpt4 book ai didi

c# - Microsoft JScript 运行时错误 : Unable to get value of the property 'style' : object is null or undefined

转载 作者:行者123 更新时间:2023-11-28 02:43:51 24 4
gpt4 key购买 nike

这是我的代码行抛出错误

$get("Panel1").style.visibility= "visible";

此行在普通页面上运行良好。但是每当在拥有母版页的子页面上使用它时,它都会抛出错误“Microsoft JScript 运行时错误:无法获取属性“样式”的值:对象为 null 或未定义” ”。我是 javascript 的初学者。我在 Asp.Net 3.5 上使用这个。以前有人知道这个问题。

最佳答案

您的问题可能是因为您没有使用渲染的ID,如果您在dipper页面上使用相同的面板,则会发生变化。由于您没有使用正确的 ID,$get() 部分会返回 null 或 undefined。将代码更改为:

$get("<%=Panel1.ClientID%>").style.visibility= "visible";

并渲染 panel1 id,因为它将最终出现在 html 页面上。

你应该单独解决这个问题:你可以在页面上从浏览器实用程序中查看“查看页面源代码”,并查看 Panel1 id 是否存在于你的 html 结构中,在那里你可以找到正确的 ID 以及未找到的原因。所以这里的重点是我们查看 html 渲染页面以找出脚本出了什么问题。

关于c# - Microsoft JScript 运行时错误 : Unable to get value of the property 'style' : object is null or undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12234210/

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