1

我的 html 代码中有两个 div 标签,如下所示。我想根据页面 UI 文化(Ui 文化是 en-US 或 fa-IR)更改他们的 float 属性......我想我可以使用 java 脚本来做到这一点。但我不知道如何通过 Javascript 获取 UI 文化。我想要一个 if 条件中的代码来确定 Ui 文化...提前为您提供帮助...

<div id="zone1" style="float: left;"><img alt="" src="~/IconArrow.png" /> &nbsp;</div>
<div id="zone2" style="float: left;"><img alt="" src="~/IconHome.png" /></div>

<script type="text/javascript">
if(/* ui culture is fa-IR*/)
{
    document.getElementById("zone1").style.float = "right";
    document.getElementById("zone2").style.float = "right";     
} 
</script>
4

1 回答 1

0

你好试试这个,让我知道。如果这解决了您的问题,请不要忘记选择正确答案

<script type="text/javascript">
function testfunc(g)
{
    //alert("asd"+g);
    if(g == "fa-IR")
    {
        alert("as");
        obj = document.getElementById("zone1");
        obj2 =document.getElementById("zone2");
        obj.setAttribute("style", obj.getAttribute("style") + "; float:right; ");
        obj2.setAttribute("style", obj2.getAttribute("style") + "; float:right; ");
    }
}
</script>

==================================================== ================================

<div style="display:block; width:100%; height:100px; border:1px solid #333">
    <div id="zone1" style=" float: left; display:block; width:20px; height:20px; background:#93F;"> </div>
    <div id="zone2" style="  float: left; display:block; width:20px; height:20px; background:#F66;"> </div>
</div>

<input type="button" name="" onclick = "testfunc('fa-IR')" value="test" />
于 2012-11-19T10:55:40.783 回答