2011-08-01 22 views
0

ウェブアプリケーションを見て、画像ファイルとリンクするためのヒントを教えてください。私は何とかリンクしたいと思っていました。背景画像URLリンクの問題

myHtml.html 
<div id = "myID" style="background:url('/imageFolder/myImage1.jpg')" > </div> 

Web Application(myProject) 
    | 
    |_____htmlFolder 
    |   | 
    |   |_______myHtml.html // i have to link a image file url in this page from other folder 
    | 
    |_____Image Folderr 
       | 
       |_______myimage1.jpg 

答えて

1
Try this, it will work: 

<div id = "myID" style="background-image:url('../imageFolder/myImage1.jpg')" > </div> 
+0

おかげバラで
... :) –