Textarea更改提交表单jQuery

时间:2014-01-21 22:53:28

标签: javascript php jquery html forms

我有一个翻译文本的表单,并希望在用户输入字符时提交表单。与google translate类似。



这是代码示例:

<form id="trans" method="post" action="prevedi.php">
<textarea id="prevedi" name="prevedi" style="margin: 2px; height: 137px; width: 380px;"></textarea>
<textarea id="prevod" disabled="disabled" name="prevod" style="margin: 2px; height: 137px; width: 380px; border: 0px;" readonly></textarea>
<input name="translate" type="submit" value="Translate"/>

任何想法,怎么做?

2 个答案:

答案 0 :(得分:0)

$(document).ready(function(){$("#prevedi").change(function(){$("form").post();});});

答案 1 :(得分:0)

$('#texterea#prevedi').on('keyup',function(){
   $.ajax({
     url: url,
     dataType: 'json',
     type: "post",
     data: {'word',$(this).val()},

     success: function (result) {
       $('#texterea#prevod').val(result.value);
     },
     error: function (error) {

     }
   });

 });