如何在点击时交换图像

发布于 2024-11-04 09:20:33 字数 140 浏览 1 评论 0原文

如何在 JavaScript 中的 onClick 事件之后传递值,并在另一个函数中检查该特定值?这是 iPhone 应用程序中 Web 视图中的 html 页面。

实际上,我想在单击该图像后更改按钮的图像,并使用不同的值。

How can I pass the value after onClick event in JavaScript where that particular value is checked in another function? This is a html page in a webview in an iphone application.

Actually, I want to change the image of a button after clicking on that image, with a different value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆那么伤 2024-11-11 09:20:33

假设单击的确实是图像,而不是封闭的链接,则应该这样做:

<img src="foo.png" onclick="this.src='bar.png';" />

Assuming it's really the image that is clicked, and not an enclosing link, this should do:

<img src="foo.png" onclick="this.src='bar.png';" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文