可以在jQuery中扩展val()函数吗? [英] Can you extend the val() function in jQuery?

查看:109
本文介绍了可以在jQuery中扩展val()函数吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一种方法可以扩展jQuery中的val()函数.

Is there a way to extend the val() function in jQuery.

基本上,如果要动态地将内容输入到输入中,我想做的就是设置一个类变量.

Basically, what I want to do is set a class variable if there is content being dynamically entered into an input.

打勾通常会像

var thisVal = 'Hello World';    
$('#myInput').val(thisVal).addClass('dark');

最好告诉val()函数,如果有值,总是将'dark'类添加到输入中,如果有空值,则将其删除.

It would just be nice to tell the val() function to always add the class 'dark' to an input if there is a value, and to remove it if it is empty.

可能吗?

推荐答案

尝试

$.fn.xval = function () {
    return this.toggleClass(arguments.length).val.apply(this, arguments);
};

演示: http://jsfiddle.net/mattball/v9YFu/

这篇关于可以在jQuery中扩展val()函数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆