0

我将 jquery.wysiwyg ( https://github.com/akzhan/jwysiwyg ) 与 MVC2 一起使用。如何获得 textarea 的值?

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<NotificationsViewModel>" %>
<script>
       $(document).ready(function(){
            $('#Message').wysiwyg();
       });
</script>
<% using (Html.BeginForm("ManageNotifications", "Admin", FormMethod.Post)) 
{ %>
  <table class="noborderverticalcenter" style="width:100%;">
  <tr>
    <td>Message</td>
    <td>
        <%= Html.TextAreaFor(model => model.Message) %>
    </td>
   </tr>
  </table>
 <% } %>
4

1 回答 1

0

希望这会有所帮助

var textContent=$("#textarea-id").wysiwyg('getContent');

这将为您提供包含 html 标签的文本

剥离 html 标签使用 ethis

textContent=textContent.replace(/<\/?[^>]+(>|$)/g, "");
于 2013-05-21T10:23:53.793 回答