English 中文(简体)
如何以正确的方式约束在酒吧发生的事件?
原标题:What is the correct way to bind events in jQuery?
  • 时间:2009-11-10 14:14:45
  •  标签:

例如,在php中,我有一个客户名单:

foreach($clients as $client)
    echo  <li id="client_ .$client->id. ">  . $client->name .  </li> ;

使用W/o每个清单项目进行点击活动的正确方式

onclick="my_function(the_elements_id)"

页: 1

最佳回答

假设你有一ul子“客户——清单”

$("#client_list li").click(function()
{
    var myid = $(this).attr("id"); // the clicked on items id
    // do your thing here.

}):
问题回答

并且非常冷却的live”,对目前和未来的所有配对元素都具有约束力。 如果你使用Ajax,这就很不错,必须重新组合活动,让人们说你通过麻风气 f。

More info @

$("p").live("click", function(){
  alert( $(this).text() );
});

您也可以使用。

E.g.

$( #item ).bind("click", function() { do something; });
$(document).ready(function(){

    $("li).click(function(){
        var id = $(this).attr("id");
        your_function(id); //The function you want to run with the object s ID as a parameter.
    });

});




相关问题
热门标签