尝试在页面加载时将屏幕宽度筛选到隐藏字段时出现未实现错误。查看其他类似问题,他们都建议将所有内容放入变量中并确保我没有使用保留字。我有,但我不是(据我所知)。
function GetScreenWidth() {
var sWidth = screen.width;
var hfSw = document.getElementById("<% =hfScreenWidth.ClientID %>");
hfSw.value = sWidth;
}
window.onload = GetScreenWidth();
最初,我正在使用
function GetScreenWidth() {
document.getElementById("<% =hfScreenWidth.ClientID %>").value = screen.width;
}
最终,我试图让屏幕宽度回到代码隐藏中。如果有更好的方法可以做到这一点,我很想听听。
编辑: 隐藏字段在标签上方定义。