我有一个带有 textarea 输入对象的表单的 php 页面。onchange 没有触发,我不知道为什么 - 它应该很简单!我在网上阅读了许多类似的问题,并尝试添加 onkey、onblur 和 addEventListener(如下例所示),但都没有奏效。
但后来我发现我的代码在 html 页面中运行良好,但在 php 页面中却不行。php 有什么东西让这个事件以不同的方式触发吗?
谢谢!
<textarea name="Address" ID="Address" onChange="alert('You just changed the textarea.')">xxx</textarea>
</form>
<script type="text/javascript">
Address.addEventListener('input', () => {
console.log("You just changed the textarea.");
}, false);
</script>
holdtom
慕虎7371278
喵喵时光机