gpt4 book ai didi

c# - jQuery 属性不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 21:51:50 27 4
gpt4 key购买 nike

我正在使用 asp.net、C#、jQuery 1.8.3/1.7.2

我想在页面加载时在脚本中将文本框“只读”属性更改为“真”或“假”。*已更新*文本框的值在运行时加载..这是脚本:

function hidebtn() {        
$('#diviv').css({
"display": "block"
});

$("#txtname").attr('ReadOnly', true);
}

如果我写一个警报,它工作正常,现在 div 显示正常。 txtname 属性没有改变。我像这样从代码隐藏中调用此方法:

Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "hidebtn();", true);

最佳答案

ReadOnly 更改为 readonly

$("#txtname").attr('readonly', true);

关于c# - jQuery 属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14139069/

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