Tag: jQuery的

使用jQuery .trigger调用返回值的自定义函数

有没有办法使用jQuery的.bind()和.trigger()调用来执行用户定义的函数(例如:save())并根据方法的返回进行操作? 例如: $(“#aForm”).bind (‘save’, function () { return true; }); 然后: if ($(“#aForm”).trigger (‘save’) == true) { doSomething (); }

注意输入的更改

如何在复选框更改时运行函数? 我正在尝试编写小复选框替换函数 – 但我做错了。 码: (function($) { $.fn.checking = function() { if ($(‘.checbox’).prop(‘checked’, false) === true) { $(‘.new-checkbox’).prop(‘id’, ‘unchecked’); } else { $(‘.new-checkbox’).prop(‘id’, ‘checked’); } }; })(jQuery); $(document).ready(function() { $(‘.checkbox’).wrap(”); $(‘.checkbox-wrapper’).append(‘Blue = Checked, Red = Unchecked’); $(‘.checkbox’).checking(); $(‘.checbox’).bind(‘change’, function() { $(this).checking(); }); }); PlayGround: 现场演示

Jquery如何计算选中和禁用复选框

当有5个选中的复选框时,我试图禁用所有未选中的复选框。 我的代码在这里不起作用: http : //jsfiddle.net/mtYtW/18/ 我的Jquery: var countchecked = $(‘table input[type=”checkbox”]’).find(“:checked”).length if(countcheckhed > 5) { $(“table input:checkbox”).attr(“disabled”, true); } else {} 我的HTML: Feature 1 Feature 2 Feuture 3 Test 1 Test 2 Test 3 Test 4 Test 5 Test 6 Test 1 Test 2 Test 3 Test 4 Test 5 Test 6 Test 1 Test […]

帮我转移Burt Reynolds Face – jQuery

我有一个问题,jQuery移动Burt Reynolds面对页面。 到目前为止我的代码是: function moveBurt() { $(‘.burt’).animate(‘left’ : “-=100px”, 3000, ‘linear’); } 但这不起作用:( 请帮助我移动暴露雷诺!

JQuery:使用延迟与HTML或文本设置不起作用

我在这里使用html函数的延迟函数有奇怪的问题。 我使用$( ‘#element’).html( ‘Hello World’);设置了一个html文本$( ‘#element’).html( ‘Hello World’); 设置文本后我想让这个文本在3秒内消失。 所以下一行我写道: $(‘#element’).delay( 3000).html( ‘&nbsp’); 这个不起作用,它将html设置为&nbsp而不等待3秒,看起来jquery正在跳过延迟function。 例如,使用fadeOut可以正常工作。 我想这与延迟的队列事情有关。 但为什么这不起作用。 它非常简单,等待3秒然后运行html函数。 有人可以提供建议吗? 谢谢。 PS:对于您的信息,我使用jQuery 1.4.2

如何在没有引用信息的情况下在jQuery中打开链接

我需要在jQuery中打开一个链接,但我需要避免发送引用信息。 简而言之,我需要模拟rel =“noreferrer” 这可行吗?

用jquery替换字符串中的数字

我有一个字符串,其中有一个数字,我想用另一个数字替换。 即 blah blah 32 blah blah 我知道这个字符串中只有1个数字。 我可以做到这一点: var my_string = $(‘a#my_link’).text(); 但基本上我不知道如何在my_string上搜索数字并用其他东西替换该数字。 这有可能与jQuery? 谢谢你的任何想法。

jQuery选择器引用自我

简单的问题: 如果我想将html()设置为自己的属性,如何在不使用$.each()情况下引用self? $(‘*[rel]’).html($(this).attr(‘rel’)); // nope $(‘*[rel]’).html($(self).attr(‘rel’)); // nah $(‘*[rel]’).html($(sender).attr(‘rel’)); // undefined $(‘*[rel]’).html($(target).attr(‘rel’)); // still undefined $(‘*[rel]’).html($(???).attr(‘rel’)); // this isn’t even correct syntax $(‘*[rel]’).html($(beer).attr(‘rel’)); // well that would be tasty $(‘*[rel]’).html($(woman).attr(‘rel’)); // not in this life $(‘*[rel]’).html($(god help me!).attr(‘rel’)); // He probably doesn’t even know how to use a computer $(‘*[rel]’).html($(i give up).attr(‘rel’)); // unexpected… o’rly?

jQuery获取选择选项id并更改隐藏的输入值

我有一个带有选择列表的表单。 每个选项还包含一个动态ID,我需要捕获它,然后使用它来更改隐藏输入的值。 所以基本上取选择的选项id并改变隐藏输入值的值。 我的选择和隐藏输入看起来像: Universal (20030) Medium (4545456) Large (15447) 我已经做了一些jQuery来捕获所选选项的id,但我无法弄清楚如何使用它来改变我的输入值。

$(document).on()和$(element)之间有什么区别.on()

我知道jquery .on()的使用和目的,因为我使用它。 但是我想知道这个脚本中$(document).on()vs $(element).on()之间的区别是什么: … … … AJAX DINAMYC CONTENT …. $(document).on(‘click’,’.btn-edit’,function(){ go_edit(); }); $(‘#table-user’).on(‘click’,’.btn-edit’,function(){ go_edit(); }); 是什么表现不同或他们之间的其他东西?