function isCheckString(){ 
    var topicName=$("#txtTopicname").val();  
    var strpattern =?????; 
    if(!strpattern.test(topicName)){ 
    alert("'*,/,&' can not existed in topic name!!!"); 
    return false; 
  } 
   return true; 
} 我希望验证文本框输入的值是否包括& . / 
请问这样写对不对 还有那个strpattern 后面的正则式怎么写???