我正在使用选择的 jquery 版本 0.9.14。我的问题是选择的 jquery 不支持焦点事件。虽然我提到了几个例子,但这没有帮助。谁能帮帮我。我正在使用如下代码:
$('#proof_chzn').on('focus', function(e){
var jobid=$('#id').val();
if(jobid != ' ')
{
$("#proof").empty();
jQuery.ajax({
type: "post",
url: "dynamicversion.php",
data: { id:jobid, flag:"refresh" },
success: function(response)
{
jQuery('#proof').append(response);
}
});
}
});
下拉菜单的 HTML 代码:
<div id="proof_chzn" class="chzn-container chzn-container-single"
style="width: 285px;" title=""><a tabindex="-1" class="chzn-single"
href="javascript:void(0)"><span>New Revision</span><div><b></b></div></a>
<div class="chzn-drop"><div class="chzn-search"><input type="text"
autocomplete="off">
</div><ul class="chzn-results"><li style="" class="active-result result-selected"
id="proof_chzn_o_0">New Revision</li></ul></div></div>