JQ怎么将一个动态事件里面的变量变成全局变量

$('#Button_1-Other').on('propertychange input', 'input', function () {
var inputVal = $(this).val();
});
就是怎么将inputVal这个变量变成全局变量,把var去掉我也试了,不好使

inputVal = $(this).val();

window.inputVal = $(this).val();
请注意,在事件过程中产生的全局变量,在其他地方使用时,也必须等到这个事件发生后才行,比如在另一个事件中,而且这个事件是发生在上一个事件之后的。
下面是个例子:
<input type=text />
<button>click</button>
<script>
$(function(){
$('input').on('propertychange input',function(){
inputVal = $(this).val();
});
$('button').on('click',function(){
alert('你输入的字符是'+inputVal);
});
});
</script>
温馨提示:内容为网友见解,仅供参考
第1个回答  2019-06-14
外部定义
var inputVal;
$('#Button_1-Other').on('propertychange input', 'input', function () {
inputVal = $(this).val();
});
相似回答