本文介绍了jQuery的ASP控制.prop(“禁用”,“”)不能够在检查IE 9箱的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用下面的code,使一个aspx页面上的复选框。

I’m trying to enable a check box on an Aspx page using the following code.

$("#ctl00_ContentPlaceHolder1_chkCheque1").prop("disabled", "");

当在下拉列表中的项目被点击,并在Chrome和Firefox的作​​品,但在执行此code不是IE 9。

This code is executed when an item in a drop down list is clicked and works in chrome and Firefox, but not IE 9.

我可以看到code脚本调试器运行,但它不会影响该复选框控制。

I can see the code being run in the script debugger but it doesn’t affect the check box control.

任何及所有帮助AP preciated。

Any and all help is appreciated.

推荐答案

有关SURESHOT结果使用真正的jQuery 试试这个。

for sureshot result make use of true and false with jquery try this.

$("#ctl00_ContentPlaceHolder1_chkCheque1").prop("disabled",false);

这篇关于jQuery的ASP控制.prop(“禁用”,“”)不能够在检查IE 9箱的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 13:28