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)