$(function(){
$("#username").bind("keyup",isReg);
$("#pwd").bind("keyup",isReg);
})
function isReg(){
var reg=/[^a-zA-0-9\_]/g;
var objValue=$(this).val();
objValue=objValue.replace(reg,"");
$(this).val(objValue);
}
$(function(){
$("#username").bind("keyup",isReg);
$("#pwd").bind("keyup",isReg);
})
function isReg(){
var reg=/[^a-zA-0-9\_]/g;
var objValue=$(this).val();
objValue=objValue.replace(reg,"");
$(this).val(objValue);
}