English 中文(简体)
有可能模拟目标。 IE8
原标题:Is it possible to simulated Object.getOwnPropertyNames in IE8

是否有可能在IE8中模拟Object.getOwnPropertyNames?

I m 试图获得fiddle,以便在IE8工作。

I believe the only thing left is to make a function simulating getOwnPropertyNames.

当然,也非常赞赏其他办法解决将印本标语和印本字延伸到国际E8的基问题。

rel=“nofollow”>fiddle,其中使用外部5shim书写文档。

。 页: 1 关键

问题回答

页: 1

Object.getOwnPropertyNames() returns both enumerable and non-enumerable own properties of an object. It s not possible to iterate over non-enumerable properties in ECMAScript 3rd Edition implementations, so you can only get those that are enumerable.

起草归还可数财产的程序非常简单:

var arr = [];
for (var k in obj) {
    if (obj.hasOwnProperty(k)) 
        arr.push(k); 
}

https://developer.mozilla.org/en/Java/Reference/Global_Objects/Object/keys”>。 目标:。 但是,如果这还不够,那么你就会从uck头 re走。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签