English 中文(简体)
过度开采财产 CSSStyleDeclaration.textShadow?
原标题:Override property CSSStyleDeclaration.textShadow?

Is it possible to override the textShadow property of a CSSStyleDeclaration object in JavaScript?

我尝试如下:

var element = document.createElement( div );
Object.defineProperty(element.style,  textShadow , {
    get: function() {
        console.warn("Getter called");
        return "";
    },
    set: function(value) {
        console.log("Setter called");
    },
    configurable: true
});

element.style.textShadow = "black 3px 3px 10px"; // Works as usual

正如最后一行已经指出的,财产压倒一切并不真正可行。 我发现,“彩礼”不是“彩礼”元素的own/em>财产,而是来自CSS2Properties界面。 然而,我不知道如何利用CSS2Properties接口......。

www.un.org/Depts/DGACM/index_spanish.htm 我已经测试了7.0.1和15。 在“ Chrome”中,它赢得了一些工作,但FF 8确实发挥了作用。

是否有更通用的方法推翻所有要素的遗产? 我可以 each取每张超额贷款,并压倒案文Shadow财产,但我希望更方便。

最佳回答

My problem was arising from a bug in the Chrome browser (see post). In Firefox 8 the code works as expected.

问题回答

暂无回答




相关问题
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.

热门标签