是否可以与下拉列表中的选项一起动态创建新的锚标记?
我想从下拉列表框中的新选项卡中打开新页面。有没有其他方法可以做到这一点?
到目前为止,我已经尝试过这个:
function abc
{
$("#reportimg").fadeOut("slow");
<?php $link="<html><a Onclick='openreport($report2)'>Open</a></html>";?>
var text="<?php echo $report2.$link;?>";
var val="<?php echo $report2;?>";
alert(text);
$('#report_list').append( new Option(text,val) );
}