function containSpecial( s ) { var str = "[@/'\"#$%&^*]+"; var reg = new RegExp(str); return (reg.test(s) ); }