更改textarea里的内容,然后通过js来得到:
<textarea id="code" name="code" ></textarea>
var str = $("#code").val();//或者document.getElementById("code").value;
alert(str)
更改后,str总是空的。如何解决呢?
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript">
window.onload = function () {
document.getElementById("btnSubmit").onclick = function () {
alert(document.getElementById("code").value);
};
}
</script>
</head>
<body>
<textarea id="code" name="code"></textarea>
<input type="button" name="name" value="提交 " id="btnSubmit"/>
</body>
</html>
能获取到啊
在js onXX事件里面捕获
不管用
你具体的代码贴下。
你可以试试$('#code').text()