Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クライアントが(クライアントに)メモを入力できるテキスト領域があります。しかし、クライアントが'を含むテキストを入力すると、それは壊れます。
新しいlinea\r \ nでも同じ問題が発生しましたが、これで修正しました
notes:'@Html.Raw(client.Notes.Replace(Environment.NewLine," 
"))'});
'問題を修正するにはどうすればよいですか?例をお願いします
ありがとう
JQueryを使用してテキストをDomに解釈し直すときに問題が発生する場合は、次のような関数を使用してすべての文字列をhtmlエンコードできます。
function htmlEscape(str) { return String(str) .replace(/&/g, '&') .replace(/"/g, '"') .replace(/'/g, ''') .replace(/</g, '<') .replace(/>/g, '>'); }