gpt4 book ai didi

jquery 在调用之前检查字符串是否作为函数存在

转载 作者:行者123 更新时间:2023-12-01 04:07:52 25 4
gpt4 key购买 nike

为什么 isFunction 不适用于隐藏/显示?

http://jsbin.com/tavirasi/1/edit?js,output

$('.form select[data-change]').change(function(){
var $el = $($(this).data('change'));
if($el.length){
var action = $(this).find(':selected').data('action');
if($.isFunction(action)){
$el[action]();
}
}
}).change();

HTML

<form action="" class="form">

<select name="question" data-change="input[name=customer_question]">
<option data-action="hide">Mothers maiden name</option>
<option data-action="foo">Prevent error</option>
<option data-action="show">Custom question</option>
</select>

<input type="text" name="customer_question" style="display:none" />

</form>

最佳答案

您传递的字符串当然不是函数。应该是:

if ( $.isFunction( $el[action] ) )

关于jquery 在调用之前检查字符串是否作为函数存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25079787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com