如何通过jQuery在PHP中处理动态创建的下拉列表的更改所选项目事件
function printDropDownList($lbId,$elements,$header)
{
print "
<tr><th align=\"right\">$lbId: </th><td>
<select id=\"$lbId\" style=\"width:80px;\" class=\"text ui-widget-content ui-corner-all\">";
foreach($elements as $item)
{
print "<option value=\"$item[0]\">$item[1]</option>";
}
print "</select>";
}
$db = new Database();
$listHeaders = $db->arrayOfChildFacetsOneLevel(206);
$i=0;
foreach($listHeaders as $listHeader)
{
$facets = array();
$q=0;
$db->arrayOfChildFacetsRecursive($facets,$listHeader[0],$q);
printDropDownList("list".$i,$facets,$listHeader);
$i++;
}
function printDropDownList($lbId,$elements,$header)
{
print "
<tr><th align=\"right\">$lbId: </th><td>
<select id=\"$lbId\" style=\"width:80px;\" class=\"text ui-widget-content ui-corner-all\">";
foreach($elements as $item)
{
print "<option value=\"$item[0]\">$item[1]</option>";
}
print "</select>";
}
$db = new Database();
$listHeaders = $db->arrayOfChildFacetsOneLevel(206);
$i=0;
foreach($listHeaders as $listHeader)
{
$facets = array();
$q=0;
$db->arrayOfChildFacetsRecursive($facets,$listHeader[0],$q);
printDropDownList("list".$i,$facets,$listHeader);
$i++;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
.live()
事件如果您有多个需要绑定事件的元素,则为这些元素输入一个类名,然后您可以使用类选择器。
You can use
.live()
event for thisIf you have more than element for which you need to bind the event then put a class name for those and you can use the class selector.