如何单击
假设我们有如下所示的 html,我希望能够使用 javascript 单击该元素,就像它是一个链接一样。
<li class="myClass" data-type="onClick" data-target="something://url">
<img src="img.png" alt="image"/>
<h2> Text</h2>
</li>
谢谢
Assuming that we have html like the one below, I want to be able to click on the element using javascript just as if I it was a link.
<li class="myClass" data-type="onClick" data-target="something://url">
<img src="img.png" alt="image"/>
<h2> Text</h2>
</li>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在你的 javascript 中创建函数 doSomething()
并可能在 li 元素上使用 CSS:
In your javascript create the function doSomething()
And maybe use CSS on the li element:
您还可以使用 jQuery。使用 jQuery 更容易。在那里你可以给 li 元素一个 id 或一个类,然后你可以使用这段代码:
或者使用 id:
我还建议通过在 css 中添加“cursor:pointer;”来在元素上放置一个指针。
所以每个人都知道可以点击它:)
You could also use jQuery. It's more easy to work with jQuery. There you would give the li element an id or a class and then you could use this code:
or with id:
I would also advise to put a pointer on the element by adding " cursor: pointer; " to the css.
So everyone knows it's possible to click on it :)