我在 JS 中建立了一种图片库。在给定的 img 和 p 元素上,onmousedown 事件调用两个函数:它加载新图像和新描述(见下文)
但是,与我的想法相反,onmousedow 它也是通过右键单击触发的。我不喜欢这样,我希望将 onmousedown 事件限制为鼠标左键单击。
有没有办法做到这一点?
非常感谢您的帮助。
HTML:
<img style="max-width: 100%; cursor:pointer;" src="../../img/picture1.jpg" alt="text" title="click me"
id="showgallery" onmousedown="changeimg(); changedscrpt()" />
enter code here
<p class="myclass" style="text-align: center;" id="imgdescription">Description</p>