導航:首頁 > 動漫圖片 > js本地圖片路徑怎麼寫

js本地圖片路徑怎麼寫

發布時間:2023-06-07 07:50:49

如何用js怎麼獲取到圖片的相對路徑

javascript中img.src屬性可以獲取到圖片的完整路徑, 相對路徑要通過與相對位置計算得出。計算方法:
先要明確自己的相對位置在哪,這個是需要人為指定的。
核心代碼如下:
var res=document.getElementById("img").src;
var root_href='根目錄路徑';
res=document.getElementById("img").src.replace(root_href,'');
用jquery方法
var res=$("#img").attr("src");
res=res.substring(res.indexOf("根")+2);
更多關於在上傳文件的過程得到完整路徑的方法請參考如下:
file.select();
var res=document.selection.createRange().text;
var res=file.files.item(0).getAsDataURL();
var res=file.value

② 如何通過JS獲取用戶本地圖片路徑

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>get file input full path</title>
<script language='javascript'>
function getFullPath(obj)
{
if(obj)
{
//ie
if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
obj.select();
return document.selection.createRange().text;
}
//firefox
else if(window.navigator.userAgent.indexOf("Firefox")>=1)
{
if(obj.files)
{
return obj.files.item(0).getAsDataURL();
}
return obj.value;
}
return obj.value;
}
}
</script>
</head>
<body>
<input type="file" onchange="document.getElementById('img').src=getFullPath(this);" />
<img id="img" />
</body>
</html>

firefox7+請使用return window.URL.createObjectURL(obj.files.item(0));來獲取地址

閱讀全文

與js本地圖片路徑怎麼寫相關的資料

熱點內容
水粉畫風景圖片簡單 瀏覽:778
簡單裸色美甲圖片大全 瀏覽:97
如何把圖片放到字體上面 瀏覽:727
襯衫風格男生圖片 瀏覽:478
姓小的圖片文字圖片 瀏覽:607
干美女的姿勢圖片 瀏覽:114
女生漫畫圖片鉛筆圖 瀏覽:469
發朋友圈視頻和圖片一起發怎麼發 瀏覽:239
簡單木雕圖片大全 瀏覽:498
保時捷手錶價格和圖片 瀏覽:19
漫畫帥氣的女生圖片 瀏覽:772
奪命花環高清圖片 瀏覽:527
word文字和圖片反色 瀏覽:745
元旦小報圖片簡單又漂亮的 瀏覽:657
動漫男生拉著女生的圖片 瀏覽:689
圖片拉滿word頁面 瀏覽:603
蝙蝠可愛的卡通圖片 瀏覽:710
綁美女的腳圖片 瀏覽:308
細芙蓉王煙價格表和圖片大全 瀏覽:157
成人胃管插管長度如何測量圖片 瀏覽:134