大家好我每当用户使用jquery点击文本框时就试图获取文本框的值,但是当我使用alert()来查看这里的值时,我得到的是:
function (value) {
var hooks, ret, elem = this[0];
if (!arguments.length) {
if (elem) {
hooks = jQuery.valHooks[elem.nodeName.toLowerCase()] ||
jQuery.valHooks[elem.type];
if (hooks &&
"get" in hooks &&
(ret = hooks.get(elem, "value")) !== undefined) {
return ret;
}
ret = elem.value;
return typeof ret === "string" ? ret.replace(rreturn, "") : ret == null ? "" : ret;
}
return undefined;
}
var isFunction = jQuery.isFunction(value);
return this.each(function (i) {var self = jQuery(this), val;if (this.nodeType !== 1) {return;}if (isFunction) {val = value.call(this, i, self.val());} else {val = value;}if (val == null) {val = "";} else if (typeof val === "number") {val += "";} else if (jQuery.isArray(val)) {val = jQuery.map(val, function (value) {return value == null ? "" : value + "";});}hooks = jQuery.valHooks[this.nodeName.toLowerCase()] || jQuery.valHooks[this.type];if (!hooks || !("set" in hooks) || hooks.set(this, val, "value") === undefined) {this.value = val;}});}
这是我的代码:http://jsfiddle.net/QYHXu/1/
请帮忙。非常感谢。
答案 0 :(得分:9)
$(this).val
...是一个功能。
$(this).val()
...是该函数的返回值。使用$(this).val()
。
答案 1 :(得分:3)
更改val
功能
来自
$(this).val);
要
$(this).val());
答案 2 :(得分:3)
你忘记了val函数的括号内容:)
答案 3 :(得分:1)
试试这个
$(function(){
$('input#txtName').click(function () {
alert(document.getElementById('txtName').value);
});
});