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.
如果您单击 1-3,那么您将被重定向到另一个站点,该站点位于其自己的文件中。如果您单击 4-6 然后返回并单击 Ahoj 按钮,您将设置字符串“ahoj” 2 次,这不是我想要的。我只想显示一次。你知道问题出在哪里吗?谢谢你的回答。
http://testepi.kvalitne.cz/demicko/
这样做:
$("#tlacitko").off('click').click(function(){ alert("ahojte"); });
或者如果 .off() 不支持,使用 unbind:
$("#tlacitko").unbind('click').click(function(){ alert("ahojte"); });