最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

css - On click javascript change background image - Stack Overflow

programmeradmin1浏览0评论

Hello i have a problem with some javascript. I have a div to layout a button who does something(in my chase it will insert number 1 in to a box) and i want to change the background of the button when clicked:

<div id="nr1"><INPUT TYPE="button" NAME="one"   OnClick="this.style = 'background-image:URL(images/totalback.gif);'; Calc.Input.value += '1'" style="width:45px; height:30px; background-color:transparent;  border-style: none; border-width: 0px 0px 0px 0px"></div>

This is the code,but it ignores my background image change. Can any one help me? Short info: i have little clue about javascript.

Thank you anyway.

Hello i have a problem with some javascript. I have a div to layout a button who does something(in my chase it will insert number 1 in to a box) and i want to change the background of the button when clicked:

<div id="nr1"><INPUT TYPE="button" NAME="one"   OnClick="this.style = 'background-image:URL(images/totalback.gif);'; Calc.Input.value += '1'" style="width:45px; height:30px; background-color:transparent;  border-style: none; border-width: 0px 0px 0px 0px"></div>

This is the code,but it ignores my background image change. Can any one help me? Short info: i have little clue about javascript.

Thank you anyway.

Share Improve this question asked Mar 10, 2013 at 14:30 zaporojanzaporojan 271 gold badge1 silver badge4 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 4

When using javascript you do it like this:

this.style.backgroundImage="url()";

Note that javascript changes the syntax a bit, instead of background-image you use backgroundImage.

Why dont you just use jquery its simple like this

<script src="//ajax.googleapis./ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $('#nr1 input').on("click", function(){
         $(this).css({'background' : 'red'});
      });
   });
</script>

http://api.jquery./css/

I hope you can use something like this in css:

#your_btn_id{
    width:200px;
    height:50px;
    background-image: url('../images/inactive.png');
}

When clicked change the background image:

#your_btn_id:active{
    background-image: url('../images/active.png');
}

Hope it will work and the thing is its very simple to use.

发布评论

评论列表(0)

  1. 暂无评论