jquery中如何获取textarea的值 30
<td><textareaname="content"id="content"style="width:520px;height:280px;"></textarea><...
<td><textarea name="content" id="content" style="width:520px;height:280px;"></textarea></td>
--------------------------------------------------------------------
var content=$("#content").val();
alert(content);
-------------------------------------------------------------------
以上这种方法做怎样都是获取不了它的值!那个alert输出的是一个空的对话框!求解答!!! 展开
--------------------------------------------------------------------
var content=$("#content").val();
alert(content);
-------------------------------------------------------------------
以上这种方法做怎样都是获取不了它的值!那个alert输出的是一个空的对话框!求解答!!! 展开
4个回答
展开全部
<select name="disabledForm" id="disabledForm">
<option value="true" selected>隐藏</option>
<option value="false">显示</option>
</select>
<div id="testID" style="display:none;">输入处理备注:
<form name="form1" id="form1" method="post" action="">
<textarea name="desc" cols="25" rows="5" id="desc"></textarea>
<input name="button" type="button" class="button" id="button" value="确 定" onclick="updateStatus('/gift/invoice.do?flag=dosearch');"/>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#disabledForm").bind('change',showForm);
});
var showForm = function(){
var thisValue = eval($(this).val());
if(!thisValue){
$("#testID").show();
}else{
$("#testID").hide();
}
}
var updateStatus = function(url){
var descValue = $("#desc").val();
alert(descValue);
}
</script>
<option value="true" selected>隐藏</option>
<option value="false">显示</option>
</select>
<div id="testID" style="display:none;">输入处理备注:
<form name="form1" id="form1" method="post" action="">
<textarea name="desc" cols="25" rows="5" id="desc"></textarea>
<input name="button" type="button" class="button" id="button" value="确 定" onclick="updateStatus('/gift/invoice.do?flag=dosearch');"/>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#disabledForm").bind('change',showForm);
});
var showForm = function(){
var thisValue = eval($(this).val());
if(!thisValue){
$("#testID").show();
}else{
$("#testID").hide();
}
}
var updateStatus = function(url){
var descValue = $("#desc").val();
alert(descValue);
}
</script>
展开全部
<select name="disabledForm" id="disabledForm">
<option value="true" selected>隐藏</option>
<option value="false">显示</option>
</select>
<div id="testID" style="display:none;">输入处理备注:
<form name="form1" id="form1" method="post" action="">
<textarea name="desc" cols="25" rows="5" id="desc"></textarea>
<input name="button" type="button" class="button" id="button" value="确 定" onclick="updateStatus('/gift/invoice.do?flag=dosearch');"/>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#disabledForm").bind('change',showForm);
});
var showForm = function(){
var thisValue = eval($(this).val());
if(!thisValue){
$("#testID").show();
}else{
$("#testID").hide();
}
}
var updateStatus = function(url){
var descValue = $("#desc").val();
alert(descValue);
}
</script>
<option value="true" selected>隐藏</option>
<option value="false">显示</option>
</select>
<div id="testID" style="display:none;">输入处理备注:
<form name="form1" id="form1" method="post" action="">
<textarea name="desc" cols="25" rows="5" id="desc"></textarea>
<input name="button" type="button" class="button" id="button" value="确 定" onclick="updateStatus('/gift/invoice.do?flag=dosearch');"/>
</form>
</div>
<script type="text/javascript">
$(function(){
$("#disabledForm").bind('change',showForm);
});
var showForm = function(){
var thisValue = eval($(this).val());
if(!thisValue){
$("#testID").show();
}else{
$("#testID").hide();
}
}
var updateStatus = function(url){
var descValue = $("#desc").val();
alert(descValue);
}
</script>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$("#textarea的id").val();或$("#textarea的id").text();都可,取出的值稍有不同
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-07-01
展开全部
<!--你的语法没有错误,以下是完整测试代码,可以正常运行。-->
<!DOCTYPE html>
<html>
<head>
<style>
.full { border: 1px solid red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<td><textarea name="content" id="content" style="width:520px;height:280px;">11111</textarea></td>
--------------------------------------------------------------------
<button id="bt1">1111111</button>
<script>
$("#bt1").click(function(){
var content=$("#content").val();
alert(content);
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
.full { border: 1px solid red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<td><textarea name="content" id="content" style="width:520px;height:280px;">11111</textarea></td>
--------------------------------------------------------------------
<button id="bt1">1111111</button>
<script>
$("#bt1").click(function(){
var content=$("#content").val();
alert(content);
});
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询