Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
456 views
in Technique[技术] by (71.8m points)

html - Img Src on local computer

I imagine that this is a common beginner question, but I've found no responses that quite cover my problem: I am having trouble linking to an image on my local computer.

I'm working on making a theme for a wordpress installation (on a Dell running Windows 7 using Xampp.) My index.php file is located at:

C:xampphtdocsutorialswordpresswp-contenthemesLeftColumnindex.php

and the image I want to show is at:

C:xampphtdocsutorialswordpresswp-contenthemesLeftColumnimagespmsplogo.jpg

... and while I've tried many variations, somehow nothing I put in the <img src=""/> seems to be working. Can anyone explain what the right way to code this is for my situation?

Just to note, it will properly display an image from an external website (such as: http://littlewebhut.com/images/eightball.gif)

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Generally IE is OK with a path like C:, but other browsers need something more. Start the path with file:///C:/ and then fill in the rest of the path to the file through Windows Explorer.

But it might be best to consider relative paths - ../../images/src="img.gif" - for example. This would be two directories up from the current location, and then into the images directory.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...