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.
我有个问题。我想知道是否有人告诉我如何在需要时使用 jquery 加载对象。例如,如果我单击按钮,则会加载图像。我的意思是不显示对象,我的意思是在单击按钮之前不会下载图像
在您的 HTML 中创建一个带有空src属性的图像标签,然后添加此 jQuery 代码,根据需要修改选择器。
src
$(function() { $("#myButton").click(function() { $("#myImage").attr("src", "myimgsrc.jpg"); }); });