2013-06-23 90 views
-2

我想用JavaScript根據URL來改變圖像大小的javascript,變化IMG大小與URL

我的意思是,如果網址是:

mywebsite.com/something.hmtl?width=400&height=250

的圖像大小爲400x250

,如果URL是

mywebsite.com/something.hmtl?width=300&height=150

圖像的大小是300x150

我該怎麼做,與HTML和JavaScript?非常感謝

+3

您是否嘗試過什麼了嗎? – j08691

+0

您需要從「查詢字符串」中獲取這些值,然後將它們傳遞給頁面上的圖像。 –

+0

http://redzeronline.ucoz.com/example.html only this im im noobot – FlyezTV

回答

2

你可以通過參數:

params = location.search.substr(1).split('&') 
dimentions = {} 
for (i in params){ 
    attr = params[i].split('=') 
    if(attr[0] == 'width' || attr[0] == 'height'){ 
     dimentions[attr[0]] = parseInt(attr[1]) 
    } 
    } 
img = document.getElementsByTagName('img')[0] // will get you the first img of the page 
img.setAttribute('width',dimentions['width']) 
img.setAttribute('height',dimentions['height'])