0

私のJavascriptには、次のようなコードがあります。

itemView.style.float = 'left';

クロムでは、 float:left が正常に表示されます。

style="float: left; cursor: pointer; color: rgb(102, 102, 102); font-size: 12px; line-height: 14px; text-decoration: none; width: 155px; height: 30px; padding-left: 24px; padding-top: 9px; margin-top: -4px; background-color: white; background-position: initial initial; background-repeat: initial initial";

ただし、Firefoxでは欠落しています

style="cursor: pointer; color: rgb(102, 102, 102); font-size: 12px; line-height: 14px; text-decoration: none; width: 155px; height: 30px; padding-left: 24px; padding-top: 9px; margin-top: -4px; background: none repeat scroll 0% 0% white";
4

1 に答える 1

4

そのはず:

itemView.style.cssFloat="left"

cssFloat プロパティについてもう少し説明します。

于 2013-05-28T16:27:38.440 に答える