我正在使用 php 在下面的 div 标签中填充一些数据
<div id="div_content">
<?=$text_content?>
</div>
从下面的表格内容
<form action="javascript:fill_content(parm)">
<table>
<tr>
<td><textarea name='content_name' id='content_id'>This is a test</textarea> </td>
</tr>
</table>
<input name='form_submit' type="submit" value='submit'>
</form>
我用jquery:
<script type="text/javascript">
function fill_content(textarea_content) {
$('#div_content').load('/process.php?content=' + textarea_content);
}
</script>
我怎样才能在as中获得textarea
价值。javascript:fill_content(parm)
parm
我用document.getElementByID('content_id').value
and 也document.getElementsByName('content_name')[0]
代替了parm
,但它们没有用。
非常感谢。