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.
对于我的网站,我让访问者在两个不同的图像之间进行选择。是否可以将他们选择的图像存储为变量?然后我需要在 if 条件中使用该变量。是否可以将每个图像命名为一个类?
谢谢!珍妮丝
最好使用 Javascript + jQuery:
var my_images = []; $('img').click(function(){ my_images.push(this); });
这会将 HTML DOM 元素存储在一个数组中以供以后使用。
强烈建议掌握 Javascript,然后使用 jQuery(一个 Javascript 库)来处理与 DOM 相关的任何事情。
http://jquery.com/