3

在我的一个 webApp 方法中,我动态创建了 html 元素并使用以下代码添加了一个动态创建的 css 对象:

    tag = typeof(tag) !== 'undefined' ? tag : "div";
    end = typeof(end) !== 'undefined' ? end : true;
    var html = '<'+tag+' value="'+this.id+'" class="element '+this.type+'"'+
                'style="position:absolute;z-index= '+this.id+'"'
    end ? html += "></"+tag+">" : html += "/>";
    var css = {},element = this;
    $.each(this.properties(),function(){
        var hash=this.indexOf("Color") !== -1?'#':'';
        var property = typeof(element[this])==='number'?element[this]*Nx.ratio:element[this];
        css[this]=hash+property;
    })
    console.log(css);
    html = $(html).css(css);
    $('.page[value='+page+']').append(html);

这是从我的 console.log 创建并传递给 css() 函数的 css 对象示例:

Object
backgroundColor: "#ff0000"
borderColor: "#ffffff"
borderStyle: "solid"
borderWidth: "0"
height: "56.865"
left: "0"
top: "274.29"
width: "893.115"
__proto__: Object

现在的问题是输出元素没有顶部、左侧、高度和宽度属性,例如:

<div value="12" class="element rectangle" style="position: absolute; background-color: rgb(255, 0, 0); left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; "></div>
4

2 回答 2

2

您的代码看起来有些问题......无法真正说出错误在哪里,但您在;这里错过了:

...'style="position:absolute;z-index= '+this.id+'"'; <-- there!

还有这个:

tag = typeof(tag) !== 'undefined' ? tag : "div"

大多数时候也可以这样写:

 tag = tag || 'div'

也许你的问题就在这里,有很多this事情正在发生......

$.each(this.properties(), function () {
    var hash = this.indexOf("Color") !== -1 ? '#' : '';
    var property = typeof(element[this]) === 'number' ? element[this] * Nx.ratio : element[this];
    css[this] = hash + property;
})

是什么this.properties()。和里面this一样吗?似乎是那里的错误来源......thiseach(...)

于 2012-04-25T07:53:21.957 回答
2

这些 CSS 属性不会应用于您的元素,因为您没有正确指定它们。lefttopwidth的值height必须是:

  • 一个数字,例如0274.29
  • 或一个后跟单位后缀的字符串,例如"0px"or "274.29px"

您的代码使用没有单位后缀的字符串,因此这些值被视为无效并且属性被忽略。

于 2012-04-25T09:11:41.330 回答