html5 - html图片点击事件找不到
PHPz
PHPz 2017-04-17 11:44:54
0
5
930

在做app与h5交互的时候,碰到的问题。

<p class="p_pic">
<img src="http://www.baidu.com/xxxxx.jpg">
</p>

有这样的一张图片,我点击以后就会有一些效果,这个怎么没有对应的onClick之类的东西?

PHPz
PHPz

学习是最好的投资!

reply all(5)
大家讲道理

It is recommended that you use firebug to click F12 on Firefox, then select the picture and click events on the right to see all the events bound to this picture

PHPzhong

http://www.runoob.com/js/js-htmldom-eventlistener.html

Ty80

It may be added elsewhere, you can search for "click" in all js. I use Yslow's all script as the browser. For apps, debugging seems more troublesome.

Ty80

The click event in HTML is onclick, not onClick. Pay attention to the case

迷茫
$('.p_pic img').on('click',function(){
    //todo ...
})
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!