我正在使用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>
我如何在textarea
javascript:fill_content(parm)
中获得parm
值。
我使用document.getElementByID('content_id').value
和document.getElementsByName('content_name')[0]
代替parm
,但它们无效。
非常感谢。
答案 0 :(得分:0)
为什么不再使用jQuery来解决textarea?你可以使用$('#div_content')。find('#content_id')。val()
答案 1 :(得分:0)
fill_content($("#content_id").val());