我是新来的...所以让我知道如何点击这个div中的第一个onclick。请注意,如果你执行$(" .giornoweekcorrente")我选择div的整个内部但我的问题是,如何通过类"单击功能visualizzaEvento ... giornoweekcorrente" 。
查看此图片以了解。
感谢您的帮助!
答案 0 :(得分:2)
试试这样。希望这会有所帮助。
[self.view setBackgroundColor:[UIColor redColor]];
答案 1 :(得分:2)
可能的解决方法:
// get the first anchor child of the element and trigger the desired event:
$('.giornoweekcorrente').on('click', function(){
$('a', this).first().trigger('click');
});
答案 2 :(得分:0)
var target = $(".giornoweekcorrente").children()[0]
$(target).click(function(){
visualizzaEvento();
});
找到你孩子的div,找到第一个孩子。
答案 3 :(得分:0)
您的锚标记 id 为什么不使用
$("#lente_click_gio").click();
答案 4 :(得分:0)
Markus,您可能希望将“onclick”附加到id为“lente_click_gio”的元素。您可以使用以下代码执行此操作:
$(document).ready(function(){
$("#lente_click_gio").on('click',function(){
//Your code here .. Call visualizzaEvento
});
});
但是这只会将click事件和回调附加到它。相反,如果要在已附加函数的锚元素上触发click事件,请尝试以下代码:
$("#lente_click_gio").click(); /* Generate a click event on the element with the ID lente_click_gio */
这将触发该元素的click事件。希望这会有所帮助。