JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<input type="text" id="email" />
JavaScript
$('#email').keyup(function () {
this.value = $(this).val().replace(/[^a-zA-Z0-9!.@#$%^&*()_-]/g,'')
});
// [email protected]確認用