0

我有两个 html 页面,directory.html 和 customer.html

我正在尝试从我的 directory.html 页面为我的操作页面 (customer.html) 中显示的文本字段设置值。

我正在使用jQuery的加载功能来加载我的目录页面,有人可以指导我如何在通过加载功能加载操作页面后立即设置文本字段的值(自动)?

TIA

4

1 回答 1

1

在 load 函数中使用 load-finished 回调:

   //Store customer.html form field values here.
   var field1 = $('#field1').val();
   $("#directory").load("directory.html", {var:'value'}, function(){
       //load the info from the first page here
       $('#field1').val(field1);
    });
于 2012-04-22T19:26:47.520 回答