本文介绍了如何获取文本的输入值并在jquery中使用它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用jquery将文本附加到para。文本取自输入文本。我的代码如下:
I am trying to use jquery to append a text to a para. Text is taken from an input text. My code is as follows:
<head runat="server">
<title></title>
<script src="jquery-1.11.1.js" type="text/javascript"></script>
<script>
var x = $("input:text").val();
$(document).ready(function () {
$("#button1").click(function () {
$("p").append(x);
})
})
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<p id="Messages">Messages displayed here:</p>
</div>
<div>
<input id="Text1" type="text" />
<br />
<br />
<button id="button1">Submit</button>
</div>
我给它一个固定值var x,例如var x =My text;它有效并附加了文字。我在这里的努力是从输入id = Text1的输入中获取文本。显然我错误地从输入中获取文本的值。
请帮助。
It I give a fixed valued to var x such as var x= "My text"; it works and text is appended. My effort here is to take text from input from input id= Text1. Apparently I am making mistake in getting the value of text from input.
Please help.
推荐答案
这篇关于如何获取文本的输入值并在jquery中使用它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!