我在mouseenter事件触发时向div添加一个按钮,但是当使用$ .ajax()添加创建项目时,使用加载功能刷新面板时,鼠标中心事件不起作用
<script>
$(function Bindmouseenter() {
$('.divitemList').mouseenter(function () { $(this).append('<input onclick="DeletePriority($(this).parent())" value="حذف" type="button" class="btn-danger btnDeletePriority" />') })
$('.divitemList').mouseleave(function () { $('.btnDeletePriority').remove() });
});
并在项目添加到面板以获取刷新面板项目时调用下面的脚本
<script>
function GoToPriorityPnl() {
$('#PriorityPnl').load('GoToPriority')
$('ul').empty();
}
</script>