0
我想顯示警報如果輸入值更改。我正在使用jQuery,所以這裏是一個演示,我正在嘗試做,但警報不顯示/不工作。由於如何顯示警報何時/如果輸入值實時更改使用jQuery?
$(".d1, .d2").click(function (e) {
var $this = $(this);
$(".input").attr('value', $this.text());
});
$(".input").change(function() {
alert(this.value);
});
.d1, .d2 {cursor:pointer;border:1px solid black;margin-top:10px;padding:5px}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<input class="input" value="" /><p/>
<a class="d1">Demo 1</a>
<a class="d2">Demo 2</a>
呼叫改變()事件設定值後直接。如:$(「。input」)。attr('value',$ this.text())。change(); –