在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吗?
答案 0 :(得分:0)
您可以使用.append()
:
$('#file').append('<apex:inputFile value="{!attachment.body}" filename="{!attachment.name}" id="file" title="Upload Attachment" styleclass="fileType"/>');
<强> Working Demo 强>