我可以使用jQuery将apex元素附加到html吗?

时间:2014-04-17 12:58:29

标签: javascript jquery html apex

在visualforce页面中,如果我使用jQuery动态创建了一个DOM,我是否可以动态地附加以下代码?

        <div id="file">
            <apex:inputFile value="{!attachment.body}" filename="{!attachment.name}" id="file" title="Upload Attachment" styleclass="fileType"/> 
        </div><br /> 

我可以使用jQuery将apex元素附加到html吗?

1 个答案:

答案 0 :(得分:0)

您可以使用.append()

 $('#file').append('<apex:inputFile value="{!attachment.body}" filename="{!attachment.name}" id="file" title="Upload Attachment" styleclass="fileType"/>');

<强> Working Demo