![]() |
JavaScript Help
I'm doing some webpage work and need to change the background image of a div and need to decide what image to use at runtime. So I want to use a variable when I change the background image. Here's what I'm doing and what I want to change for it to work like I want it to. I put all the info in the comments. The basic problem is I can't get a variable to work when I set the background image path. Any help would be appreciated.
// What I'm doing now function changeBGImage(div_id, btn_state) { if(btn_state == 'up') { document.getElementById(div_id).style.backgroundIm age = 'url(graphics/btn-unselected.gif)'; } if(btn_state == 'dn') { document.getElementById(div_id).style.backgroundIm age = 'url(graphics/btn-selected.gif)'; } } // What I want to do but doesn't work // // I want to set the button image at runtime to // different buttons from different locations. So // basically I want to use a variable when I set // the background image of the div. I don't have // much experience doing this so if you can help // I'd really appreciate it. // function changeBGImage(div_id, btn_state) { var root_path = getRootPath(); if(btn_state == 'up') { var btn_path = root_path + 'graphics/btn-unselected.gif'; document.getElementById(div_id).style.backgroundIm age = 'url(btn_path)'; } if(btn_state == 'dn') { var btn_path = root_path + 'graphics/btn-selected.gif'; document.getElementById(div_id).style.backgroundIm age = 'url(btn_path)'; } } |
Re: JavaScript Help
Quote:
Code:
eval("document.getElementById("+div_id+").style.backgroundImage = 'url("+btn_path+")'"); |
Re: JavaScript Help
Code:
document.getElementById(div_id).style.backgroundImage = 'url(btn_path)';Code:
div{Code:
document.getElementById(div_id).style.backgroundImage = 'url("'+btn_path+'")'; |
Re: JavaScript Help
Quote:
|
Re: JavaScript Help
Quote:
document.getElementById(id).src = imgsrc; But I like your way better and will use it because it works the way I wanted to do it but got messed up with the string variable getting evaluated wrong. Thanks Again! |
| All times are GMT -5. The time now is 08:16 AM. |
Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright ©1998 - 2013, nV News.