0
<?php echo $this->form->getElement("logo");  ?>
<div id="BrowserVisible">
<input type="text" id="halal" />
<input type="button" value="Upload" id="button" />
</div>

(form->getElement("logo"); ?>)字段由zend form生成,当我从PC中选择图像文件时,上传文件路径或文件名显示在输入字段中,也复制在(<input type="text" id="halal" />)中,我怎样才能做到这一点。

先进的技术

4

1 回答 1

1

尝试使用以下代码更改您的代码:

<?php echo $this->form->get("logo");  ?>
于 2013-04-20T18:03:29.147 回答