function SwapA(SwapActivation) {
for (i=1;i==5;i++) {
if (i != SwapActivation) {
// All Browsers supported .....
$("input[name=pg1"+i+"]").prop('disabled', true);
$("input[name=pg2"+i+"]").prop('disabled', true);
}
else {
// JQuery 1.10+ _&&_ Opera 12 and All other browsers... !!!!
if ( $("input[name=pg1"+i+"]").prop('disabled') === true)
$("input[name=pg1"+i+"]").prop('disabled', false);
if ( $("input[name=pg2"+i+"]").prop('disabled') === true)
$("input[name=pg2"+i+"]").prop('disabled', false);
// works = JQuery 1.10+ _&&_ Opera 12.16 + Firefox 24;
// do not work "Opera 17.0.1241.53", "Chrome" v.30.0.1599.101 m
$("input[name=pg1"+i+"]").removeProp('disabled');
$("input[name=pg2"+i+"]").removeProp('disabled');
// .removeProp() is affects negative
// works possible = JQuery 1.4.x :
$("input").attr('name','pg1'+i)[0].removeProp('disabled');
$("input").attr('name','pg2'+i)[0].removeProp('disabled');
}}}
有用吗?:)