Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要执行以下任务:
有人知道使用 dojo 或“纯 JavaScript”的好方法吗?
这种简单的方法就足够了吗?我不确定您的意思是“下载”是指“保存到客户端的计算机”还是只是“从远程服务器检索”。
<script type="text/javascript"> var image = new Image(); image.onload = function() { alert("Width: " + image.width + ", Height: " + image.height); } image.src = "http://placehold.it/350x150"; </script>