博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery - Detect value change on hidden input field
阅读量:5239 次
发布时间:2019-06-14

本文共 893 字,大约阅读时间需要 2 分钟。

You can simply use the below function, You can also change the type element.

$("input[type=hidden]").bind("change", function() {       alert($(this).val());  });
Changes in value to hidden elements don't automatically fire the .change() event. So, wherever it is that you're setting that value, you also have to tell jQuery to trigger it.HTML

JAVASCRIPT

var $message = $('#message');var $testChange = $('#testChange');var i = 1;function updateChange() {    $message.html($message.html() + '

Changed to ' + $testChange.val() + '

');}$testChange.on('change', updateChange);setInterval(function() { $testChange.val(++i).trigger('change');; console.log("value changed" +$testChange.val());}, 3000);updateChange();

should work as expected.

转载:http://stackoverflow.com/questions/6533087/jquery-detect-value-change-on-hidden-input-field

转载于:https://www.cnblogs.com/wawahaha/p/5140786.html

你可能感兴趣的文章
MyBatis课程2
查看>>
桥接模式-Bridge(Java实现)
查看>>
Spring的JdbcTemplate、NamedParameterJdbcTemplate、SimpleJdbcTemplate
查看>>
Mac下使用crontab来实现定时任务
查看>>
303. Range Sum Query - Immutable
查看>>
图片加载失败显示默认图片占位符
查看>>
【★】浅谈计算机与随机数
查看>>
解决 sublime text3 运行python文件无法input的问题
查看>>
javascript面相对象编程,封装与继承
查看>>
算法之搜索篇
查看>>
新的开始
查看>>
java Facade模式
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>