我正在使用 jQuery 动态添加 onchange 事件。当我更改文本框时,事件会触发两次,两次警报框有时会出现 3 次。
if(Country.toUpperCase().indexOf("MALAYSIA")!=-1)
{ debugger;
if(productDesc.toUpperCase().indexOf("SV")!=-1)
{
$("#<%=txtlAxis.ClientID%>").change(function()
{
if(productDesc.toUpperCase().indexOf("SV")!=-1)
{
alert('2');
}
});
}
}