让kingcms支持jquery1.72
2020-04-08
/portal/manage.php)的1131行这里为
if(obj.attr('checked')==true)
经alert(obj.attr('checked'));出来的值为checked。
上网查资料说是因为jquery版本不同,所以返回值不同。这里无论如何都不能返回真或假了,文本编辑器自然出不来。
改为以下.is(':checked'),所有版本通用。
if(obj.is(':checked')==true)
2020-04-08
/portal/manage.php)的1131行这里为
if(obj.attr('checked')==true)
经alert(obj.attr('checked'));出来的值为checked。
上网查资料说是因为jquery版本不同,所以返回值不同。这里无论如何都不能返回真或假了,文本编辑器自然出不来。
改为以下.is(':checked'),所有版本通用。
if(obj.is(':checked')==true)