js获取css属性,更改margin-top属性,给每个a标签的margin-top属性在原基础上 +5px 15

<aid="a1"href="#"class="float_r"style="margin-top:10px;"></a><aid="a2"href="#"class="... <a id="a1" href="#" class="float_r" style="margin-top:10px;"></a>
<a id="a2" href="#" class="float_r" style="margin-top:20px;"></a>
<a id="a3" href="#" class="float_r" style="margin-top:30px;"></a>
<a id="a4" href="#" class="float_r" style="margin-top:40px;"></a>
<a id="a5" href="#" class="float_r" style="margin-top:50px;"></a>
我想更改margin-top属性,给每个a标签的margin-top属性在原基础上 +5px
展开
 我来答
四舍五不入6
高粉答主

2020-03-13 · 还没有填写任何签名哦
四舍五不入6
采纳数:27 获赞数:71371

向TA提问 私信TA
展开全部

可以参考下面的代码:

<style>

a{display:block;float:left}

</style>

<div style="border:1px solid #cccccc">

<a id="a1" href="#" class="float_r" style="margin-top:10px;">asd</a>

<a id="a2" href="#" class="float_r" style="margin-top:20px;">asd</a>

<a id="a3" href="#" class="float_r" style="margin-top:30px;">asd</a>

<a id="a4" href="#" class="float_r" style="margin-top:40px;">asd</a>

<a id="a5" href="#" class="float_r" style="margin-top:50px;">asd</a>

</div>

<script>

for(var i=1;i<6;i++){

    document.getElementById('a'+i).style.marginTop = parseInt(document.getElementById('a'+i).style.marginTop)+5+'px';

}

</script>

JavaScript是一种属于网络的脚本语言,已经被广泛用于Web应用开发,常用来为网页添加各式各样的动态功能,为用户提供更流畅美观的浏览效果。

通常JavaScript脚本是通过嵌入在HTML中来实现自身的功能的。它最初由Netscape的Brendan Eich设计。JavaScript是甲骨文公司的注册商标。Ecma国际以JavaScript为基础制定了ECMAScript标准。

扩展资料:

javaScript参考函数

anchor("name")用来把字符串转换为HTML锚面标志内(<A NAME=>)

big() 把字符串中的文本变成大字体(<BIG>)

blink() 把字符串中的文本变成闪耀字体(<BLINK>)

bold() 把字符串中的文本变成乌字体(<B>)

fixed() 把字符串中的文本变成流动间距字体,便电报情势(<TT>)

fontcolor(color)设置字符串中文本的色彩(<FONT COLOR=>)

Fontsize(size) 把字符串中的文本变成指定大小(<FONTSIZE=>)

italics() 把字符串中的白原变成斜字体(<I>)

Link(url)用来把字符串转换-HTML链交标志中(<A HREF=>)

参考资料来源:百度百科-javascript

jas2124
推荐于2017-04-13 · TA获得超过197个赞
知道小有建树答主
回答量:109
采纳率:0%
帮助的人:118万
展开全部

script代码

<script type="text/javascript">
           var init = function(){
                 var eles = document.getElementsByTagName("a");
                 for(var i=0;i<eles.length;i++){
                      setCss(eles[i]);
                     
                 }
            } 
           var setCss = function(ele){
                      var m = parseInt(ele.style.marginTop);
                       ele.style.marginTop = (m + 5)+'px';
           }            
 </script>

可能把a换成div会有效果。希望对你有帮助

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
欧阳寒涵就是周大师
2013-06-14 · TA获得超过215个赞
知道小有建树答主
回答量:260
采纳率:100%
帮助的人:132万
展开全部
<style>
a{display:block;float:left}
</style>
<div style="border:1px solid #cccccc">
<a id="a1" href="#" class="float_r" style="margin-top:10px;">asd</a>
<a id="a2" href="#" class="float_r" style="margin-top:20px;">asd</a>
<a id="a3" href="#" class="float_r" style="margin-top:30px;">asd</a>
<a id="a4" href="#" class="float_r" style="margin-top:40px;">asd</a>
<a id="a5" href="#" class="float_r" style="margin-top:50px;">asd</a>
</div>
<script>
for(var i=1;i<6;i++){
    document.getElementById('a'+i).style.marginTop = parseInt(document.getElementById('a'+i).style.marginTop)+5+'px';
}
</script>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式