本文介绍了使用Jquery获取复选框的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<input type="checkbox" name="PrePayment">Pre-Payment<br />
如何使用Jquery获取文本预付款?
How would I get the text "Pre-Payment" from this using Jquery?
谢谢!
Thanks!
推荐答案
您应该在复选框中有一个值属性。 p>
You should probably have a value attribute in the checkbox.
<input type="checkbox" name="PrePayment" value="Pre-Payment">Pre-Payment<br />
然后您可以简单地使用attr命令:
Then you can simply use the attr command:
$(input).attr('value');
这篇关于使用Jquery获取复选框的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!