jsp或者html與css中讀取圖片路徑問題
阿新 • • 發佈:2019-02-14
我在WebRoot下面建立了resourse資料夾,裡面放三個資料夾css/js/images
但是在jsp頁面中使用<img src="resourse/images/flower8.jpg"> 可以讀取檔案,
但是在css中要使用background:url(../images/icon1.gif) no-repeat 5px 7px 來讀取,上面的方法不可以。難以理解為什麼
以下的方法可以用來限制上傳圖片比例的問題。。。
var _URL = window.URL || window.webkitURL;
$("#photo").change(function(e) {
var file, img;
if ((file = this.files[0])) {
img = new Image();
img.onload = function() {
if(this.height/this.width!=2){
alert("圖片無效");
}
alert(this.width + " " + this.height);
};
img.onerror = function() {
alert( "not a valid file: " + file.type);
};
img.src = _URL.createObjectURL(file);
}
});
</script>