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.
我用来AjaxHelper.BeginForm在我的视图中创建 ajax 表单。视图有一个textarea提供内容。如何在提交表单之前从此文本区域中删除 html 标签。我的意思是说:
AjaxHelper.BeginForm
textarea
您可以使用正则表达式从字符串中删除 HTML 标记,但请注意它不是 100% 可靠的。
$("button").click(function() { var text = $("#someElement").val().replace(/(<([^>]+)>)/ig, ""); // make callback with above variable... });