Using javascript regex containing '@' in razor

前端 未结 4 893
北海茫月
北海茫月 2020-12-10 01:58

I am performing email address validation with javascript in a razor view page. The regex I am going to use is similar to the one proposed at Validate email address in JavaS

4条回答
  •  [愿得一人]
    2020-12-10 02:33

    You can add another @ in front of it to escape @@, try leaving out the quantifer *. If this doesn't seem to work then add around the function, it tells Razor to not parse the contents. Alternatively you can put Javascript in a separate file to accomplish your needs.

    If for some reason you have multiple @@ in your string, place code blocks ahead @:@@

提交回复
热议问题