Checking user's homepage in Internet Explorer

前端 未结 3 1691
眼角桃花
眼角桃花 2021-01-30 07:49

Google displays a popup that asks if you want to set your home page as google.com. It\'s quite normal, when I say OK it sets it as google.com. After that however, I don\'t get t

3条回答
  •  不知归路
    2021-01-30 08:47

    The following css code is the culprit.

    behavior: url(#default#homePage) url(#default#userData);

    this is why I don't really like IE. The behavior url(#default#userData) tells the browser to store this as session information on the client side or browser memory.

    More information here: http://msdn.microsoft.com/en-us/library/ms533015(v=vs.85).aspx

提交回复
热议问题