84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
在做app与h5交互的时候,碰到的问题。
<p class="p_pic"> <img src="http://www.baidu.com/xxxxx.jpg"> </p>
有这样的一张图片,我点击以后就会有一些效果,这个怎么没有对应的onClick之类的东西?
学习是最好的投资!
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
http://www.runoob.com/js/js-htmldom-eventlistener.html
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.
The click event in HTML is onclick, not onClick. Pay attention to the case
$('.p_pic img').on('click',function(){ //todo ... })
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
http://www.runoob.com/js/js-htmldom-eventlistener.html
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.
The click event in HTML is onclick, not onClick. Pay attention to the case