我的html中有这段代码
<span id="u_0_10">You can also <a rel="my_Feed" href="#" ajaxify="send_notify?Qid=10&part=99">feed</a>Send me this feed</span>
我想知道我能用jQuery找到那个锚并在jQuery中点击它吗?
答案 0 :(得分:0)
你可以这样做,
<强> Live Demo 强>
$('#u_0_10 a').click(function(){
alert($(this).text());
});
$('#u_0_10 a').click();
答案 1 :(得分:0)
这个CSS应该有用。
“span#u_0_10 a”
答案 2 :(得分:0)
$('#u_0_10&gt; a')。each(function(){ //做你的东西 });
答案 3 :(得分:0)
由于没有人点击链接我会这样做
$('#u_0_10 > a').trigger("click")
答案 4 :(得分:0)
试试这段代码
对于ID为myId的特定范围
$('#myId a').click(function() {
/ process click event here
});
适用于css myKlass的所有范围
$('.myKlass a').click(function() {
/ process click event here
});
适用于所有范围
$('span a').click(function() {
/ process click event here
});