继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

使用JavaScript动态设置样式 Ver2

墨色风雨
关注TA
已关注
手记 334
粉丝 75
获赞 351

你可以参考到前一版本http://www.cnblogs.com/insus/archive/2011/08/18/2143996.html 这个有点不好的地方,就是如果想改变样式,也许得使用查找替换才行。

因此,Insus.NET写出另外一个方法来实现,这样可以改一应用百。

先写一个样式Style:

 <style type="text/css">
    .overStyle 
    {
       border-color:#3599ff;
    }
    .outStyle 
    {
        border-color: #fff;
    }
</style>复制代码

 

Javascript也要改一下:

 <script type="text/javascript">

        function onOver(Id) {
            Id.className = 'overStyle';
        }

        function onOut(Id) {
            Id.className = 'outStyle';
        }
    </script>

 

最后是html的动态应用。

 <fieldset id="fs1" style="margin: 10px; padding: 10px; width: 170px; text-align: center;"
                    onmouseover="onOver(this)" onmouseout="onOut(this)">
                    ERP <a href="http://xxx.xxx.com/erp" target="_blank">http://xxx.xxx.com/erp </a>
                </fieldset>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP