如何为使用jquery创建的文本字段赋值

时间:2013-04-06 11:44:53

标签: php jquery mysql

为我创建一个应用程序,我需要动态添加字段,所以我在文本字段中使用了jquery.now,我需要从数据库中检索值并分配给那些字段。

如何实现。

   <script type="text/javascript">

      (function($){
           $countForms = 1;
           $.fn.addForms = function(){
            var myform = "<table>"+
             "  <tr>"+
             "     <td>Pid:</td>"+
             "     <td><input type='text' name='id["+$countForms+"]'></td>"+
             "     <td>Pname:</td>"+
             "     <td><textarea name='name["+$countForms+"]'></textarea></td>"+
             "     <td>Pfee:</td>"+
             "     <td><input type='text' name='amount["+$countForms+"]'></td>"+
             "     <td><button>remove</button></td>"+
             "  </tr>"+
             "</table>";

             myform = $("<div>"+myform+"</div>");
             $("button", $(myform)).click(function(){ $(this).parent().parent().remove(); });

             $(this).append(myform);
             $countForms++;
      };
})(jQuery);     

$(function(){
    $("#mybutton").bind("click", function(){
        $("#container").addForms();
    });
});

0 个答案:

没有答案