例如,在php中,我有一个客户名单:
foreach($clients as $client)
echo <li id="client_ .$client->id. "> . $client->name . </li> ;
使用W/o每个清单项目进行点击活动的正确方式
onclick="my_function(the_elements_id)"
页: 1
例如,在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.
}):
您也可以使用。
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.
});
});