0

MVC2 でjquery.wysiwyg ( https://github.com/akzhan/jwysiwyg ) を使用しています。テキストエリアの値を取得するにはどうすればよいですか?

<%@ 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