Skip to content

Instantly share code, notes, and snippets.

@think2011
Created March 16, 2015 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save think2011/a35b5d93e78305618f45 to your computer and use it in GitHub Desktop.
Save think2011/a35b5d93e78305618f45 to your computer and use it in GitHub Desktop.
兼容IE8 - 9 的图片预览
function previewImg(el, inputFile) {
el.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod = scale)";
el.filters("DXImageTransform.Microsoft.AlphaImageLoader").src = inputFile.value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment