将文本框字符串转换为mvc中的标签

时间:2014-03-03 13:50:08

标签: asp.net asp.net-mvc rendering renderpartial

我有一个复选框和一个文本框。 选中复选框后,必须以标签的形式返回文本框中的字符串。 我是MVC的新手。请提供一些指导和链接。

HTML:

<input type="button" value="Submit" id="submit" name="comBox" />
<input type ="text" id="comment" />

脚本:

<script type="text/javascript">
    $.ajax({
        url: '/Controllers/HomeController',
        type: 'POST',
        datatype: 'html'

    }).success(function (result) {    
        $('#comm1').html(result);
    });
</script>

0 个答案:

没有答案