最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What is the relevance of clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 - Stack Overflow

programmeradmin0浏览0评论

From the jQuery 1.7rc1 source:

noData: {
    "embed": true,
    // Ban all objects except for Flash (which handle expandos)
    "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
    "applet": true
},

What is clsid:D27CDB6E-AE6D-11cf-96B8-444553540000?

From the jQuery 1.7rc1 source:

noData: {
    "embed": true,
    // Ban all objects except for Flash (which handle expandos)
    "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
    "applet": true
},

What is clsid:D27CDB6E-AE6D-11cf-96B8-444553540000?

Share Improve this question asked Oct 29, 2011 at 20:36 RandomblueRandomblue 116k150 gold badges362 silver badges557 bronze badges 5
  • 6 Google is a great tool for finding what a guid is: google./search?q=D27CDB6E-AE6D-11cf-96B8-444553540000 – Greg Hewgill Commented Oct 29, 2011 at 20:38
  • 1 I've made the search, but I don't understand the results. – Randomblue Commented Oct 29, 2011 at 20:39
  • 2 If you read the ment in the code and the first result from Google, it makes perfect sense. – Ivan Commented Oct 29, 2011 at 20:48
  • 1 This is now the first result listed. We've e full circle! – Oran D. Lord Commented Mar 17, 2017 at 18:17
  • {D27CDB6E-AE6D-11CF-96B8-444553540000}, Microsoft’s GUID for representing Shockwave Flash, which you might be able to find in a museum at the moment. – Константин Ван Commented Jun 29, 2019 at 20:58
Add a ment  | 

2 Answers 2

Reset to default 2

Whenever an object is not a Shockwave flash object, setting expando properties won't work ("expando property"), as uncatchable errors will be thrown. From a glance at the source, this method is interna

From the source:

// The following elements throw uncatchable exceptions if you
// attempt to add expando properties to them.
noData: {
    "embed": true,
    // Ban all objects except for Flash (which handle expandos)
    "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
    "applet": true
},

Search in the source for noData, and many references with appropriate ments appear.

According to the code, the point is to

Ban all objects except for Flash (which handle expandos)

This means that the line "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" is used to blacklist Flash objects. The first result from Google states that the GUID stores "configuration data for the policy setting Shockwave Flash".

发布评论

评论列表(0)

  1. 暂无评论