我有一個表單,我想把這個元素放在頁面上,就像使用jQuery的文本框, 這是可能的嗎?如果是,那麼如何?請幫幫我。我怎樣才能把PHP元素放在頁面上使用jQuery?
我有<form></form>
我想把這個表格上的內容。如何使用jQuery完成?
我有一個表單,我想把這個元素放在頁面上,就像使用jQuery的文本框, 這是可能的嗎?如果是,那麼如何?請幫幫我。我怎樣才能把PHP元素放在頁面上使用jQuery?
我有<form></form>
我想把這個表格上的內容。如何使用jQuery完成?
The .append() method inserts the specified content as the last child of each element in the jQuery collection (To insert it as the first child, use .prepend()).
The .append() and .appendTo() methods perform the same task. The major difference is in the syntax-specifically, in the placement of the content and target.
例如:
$('#formId').append("YOUR ELEMENT");
或
$('YOUR ELEMENT').appendTo('#formId');
參考:http://api.jquery.com/append/
PS:一定要使用
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
當然。
$('<input type="text" name="name" />').appendTo('#formId');
$('#id_of_form').append("Here your html code")
如果只有一個form,它有沒有id:
$('form').append('<textarea></textarea>');
這可能會幫助你
的Html
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>My page</title>
</head>
<body>
</body>
</html>
jQuery的
var elem = '<input type="text" name="myText"/>';
$('body').append(elem);
首先創建元素之前添加的jQuery:
textbx = jQuery('<input type="text" name="mytext">');
現在追加到形式:
jQuery('#myFormId').append(textbx);
在上面的代碼,你也可以使用
prepend(), after(), before() or remove()
這實際上有什麼用PHP?或者,你純粹是問一個客戶端的jQuery問題? – DougM