The official version of Microsoft's IE8 was officially released on March 20, 2009. Many Dongyi users have upgraded their browsers, but after the upgrade, they found that Dongyi's background editor cannot be used. The symptom is to click on any function. There is no setting window popping up for the icons. After searching on GG, I finally found a way to solve the problem of not being able to use the editor under IE8. The specific modification method is as follows:
Open editor.asp in the root directory and find the following code
if (element.YUSERONCLICK) eval(element.YUSERONCLICK + 'anonymous()');
Modify to
if(navigator.appVersion.match(/8./i)=='8.')
{
if (element.YUSERONCLICK) eval(element.YUSERONCLICK + 'onclick(event)');
}
else
{
if (element.YUSERONCLICK) eval(element.YUSERONCLICK + 'anonymous()');
}
Save, refresh system files, clear cache. Re-open the background editor and take a look
If you are too lazy to change it yourself, you can just overwrite it with my modified editor.asp.
Web development programming software interface design software!