我编写了一个数组来将 GET 中的变量传递给搜索页面。搜索页面只有 4 个字段,但我只传递了最重要的变量,名字和姓氏。这是数组:
<?php echo "<td><a href='" . matry::base_to('test/trace', array('first'=>$patient->first , 'last' =>$patient->last)) . "'><ul class='controls'>
<li id='check_orders'><`span class='symbols'>L</span><span class='label'>Skip Trace</span></li>
</ul></a></td>";?>
当页面加载时,我只是回显 _GET 以预填充该页面上的第一个和最后一个输入字段..
我正在寻找的是一个脚本,它将执行搜索,并在该页面自动加载时填充名字和姓氏字段。此外,执行搜索时,它会填充到 iframe 中。(忘记那部分了)~!
我尝试使用:
<script>document.getElementById('stack').submit();</script>
<form action='http://xxxx.yyyyyyy.com/stuffhere' name='es' target="my_iframe" id="stack">
无济于事。