单击按钮时如何触发这些功能?当某些文本发生变化时,我需要运行它。但是我的页面上有一个按钮..当我输入更改但是当我使用按钮更改值时它不会触发功能(代码)
$(document).ready(function(){
var text1 = $(':text'),
text2 = $(':text'),
text3 = $(':text'),
text4 = $(':text'),
activeInput = text1;
activeInput.focus();
$(':text').on('focus', function(){
activeInput = $(this);
});
$(':button').on('click', function(){
activeInput.val(activeInput.val()+ $(this).val());
$('#dec').change(function(){
fromdecimal();
})
$('#bin').bind('change click ', function(){
frombinary();
})
$('#hex').bind('change click',function(){
fromhexadecimal();
})
$('#oct').bind('change click',function(){
fromoctal();
})
});
});
答案 0 :(得分:0)
使用。 (点)选择类似
var text = $('.text');
对于任何其他问题,请显示您的HTML代码。