...
|
...
|
@@ -50,4 +50,8 @@ $('.shops_id').click(function(){ |
|
|
alert(data.message);
|
|
|
}
|
|
|
})
|
|
|
}); |
|
|
\ No newline at end of file |
|
|
});
|
|
|
/*过滤特殊字符*/
|
|
|
$(document).on("keyup",":text",function(){
|
|
|
$(this).val($(this).val().replace(/\W/g,''))
|
|
|
}) |
|
|
\ No newline at end of file |
...
|
...
|
|