标签: jquery html image upload
当我在本地运行网站时,如何将图像上传到我的网站。我试过这个:
$('#submitImage').click(function(){ var img1 = $('#imageUpload').val(); $('#container').append('<img src="'+img1+'"/>'); });
但显然路径不正确,这是因为路径必须相对于我的index.html文件?我怎么能解决这个问题?