我有文件process.php和文件html。 我需要将数据从进程发送到html。
示例我得到数据a =目标。我想将其发送到文件html输入。因此,当流程成功时,它会将value="target"
发送给输入。
我在process.php中的代码:
$myObj->data-f1 = $target_path;
$myJSON = json_encode($myObj);
echo $myJSON;
此文件与ajax
<script>
var gol = $(this).data('f1');
$("#filepdf").val(gol);
</script>
<input id="filepdf" value="" />
我使用modal for html。 例如,我为该脚本工作的代码是这样的:
$row=array();
while($row=mysql_fetch_array($select))
{
array_push($row,"<button
data-toggle='modal'
data-xname='$row[name]'
data-target='#myHP'>
<span class='glyphicon glyphicon-trash'></span></button>");
$rows[] = $row;
}
echo json_encode($rows);
我可以使用var name=$(this).data('xname')
将data-xname调用到ajax
但这是不同的条件。