2014-04-17 68 views
0

在visualforce頁面中,如果我有一個完全使用jQuery動態創建的DOM,我能動態地追加下面的代碼嗎?可以使用jQuery將頂點元素附加到html嗎?

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

我可以使用jQuery將頂點元素附加到html嗎?

回答

0

您可以使用.append()

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

Working Demo

+0

我敢肯定,這種做法是行不通的。也許使用常規的html元素,但不能使用頂點元素。 – Daft

+1

至少嘗試一下... –

+0

對不起,我做了,它不工作。我真的希望它會,但沒有喜悅。 – Daft

相關問題