开发者

dynamically generated Elements are not appended in document correctly in IE

开发者 https://www.devze.com 2022-12-18 15:37 出处:网络
I have written a Javascript开发者_如何学运维 calender, that is dynamically generated by Javascript.

I have written a Javascript开发者_如何学运维 calender, that is dynamically generated by Javascript. But if does not functions in IE.

here is the link to my script.

http://asexpress.de/calender/

We one looks at IE Developer tool, the newly generated contents are there but do not show in browser.

Any help please.


Looks like you forgot some quotes. On line 15 of kalendar.js, change:

    "navigationPosition": top

to

    "navigationPosition": "top"

...with options.navigationPosition defined as a string, the call to toLowerCase on line 160 succeeds.


Error: this.options.navigationPosition.toLowerCase is not a function
Source File: http://asexpress.de/calender/kalender.js?sfgdata=+sfgRmluamFuX1R5cGU9amF2YV9zY3JpcHQmRmluamFuX0xhbmc9SmF2YVNjcmlwdA%3D%3D+q
Line: 160
0

精彩评论

暂无评论...
验证码 换一张
取 消