html input监听事件无效,html <input type =“text”/> onchange事件无效

检查击键只是部分解决方案,因为可以使用鼠标点击更改输入字段的内容。如果右键单击文本字段,则可以剪切和粘贴选项,以便在不进行击键的情况下更改值。同样,如果启用了自动填充,则可以左键单击一个字段并获取以前输入的文本的下拉列表,您可以使用鼠标单击从您的选项中进行选择。按键捕获不会检测到这些类型的更改。

可悲的是,至少据我所知,没有“onchange”事件立即报告更改。但是有一个适用于所有情况的解决方案:使用setInterval()设置计时事件。

假设您的输入字段的ID和名称为“city”:

有一个名为“city”的全局变量:

var city = "";

将此添加到您的页面初始化:

setInterval(lookForCityChange, 100);

然后定义一个lookForCityChange()函数:

function lookForCityChange()

{

var newCity = document.getElementById("city").value;

if (newCity != city) {

city = newCity;

doSomething(city); // do whatever you need to do

}

}

在此示例中,每100毫秒检查一次“城市”的值,您可以根据需要进行调整。如果您愿意,可以使用匿名函数而不是定义lookForCityChange()。请注意,您的代码甚至浏览器可能会为输入字段提供初始值,以便在用户执行任何操作之前通知您“更改”;根据需要调整代码。

如果定时事件每隔十分之一响一次的想法似乎很笨拙,你可以在输入字段收到焦点时启动定时器并在模糊时终止它(使用clearInterval())。我不认为在没有接收焦点的情况下改变输入字段的值是可能的,因此以这种方式打开和关闭定时器应该是安全的。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
</style> </head> <body> <div> <button onclick="addRow()">新增一行</button> <button onclick="addColumn()">添加一列</button> <button onclick="deleteRow()">删除行</button> <button onclick="deleteColumn()">删除列</button> <button onclick="changeSize()">调整大小</button> <div> <div id="popup" class="popup" style="display: none;"> <img id="popupImg"> </div> <table id="myTable"> <thead> <colgroup> <col style="width: 40px !important;"> </colgroup> <tr> <td contenteditable="true"><input type="text" oninput="filterTable(0)" placeholder="工艺膜层"></td> var table = document.getElementById("myTable"); var imageColumnIndices = [8, 9, 10,11,12,13]; // 指定要添加图片按钮的列索引数组 function addRow() { var newRow = table.insertRow(); var cellsCount = table.rows[0].cells.length; for (var i = 0; i < cellsCount; i++) { var newCell = newRow.insertCell(); newCell.contentEditable = true; if (imageColumnIndices.includes(i)) { var newInput = document.createElement("input"); newInput.type = "file"; newInput.onchange = function() { previewImage(this); }; newInput.onclick = function() { showPopup(this.src); }; newCell.appendChild(newInput); // 点击事件监听器,点击图片按钮时弹出放大图片的弹出窗口 newInput.onclick = function () { showPopup(this.src); }; }else { newCell.innerHTML = "新单元格"; // 将空余按钮的单元格内容设置为默认值 } } } function addColumn() { var cellsCount = table.rows[0].cells.length; for (var i = 0; i < table.rows.length; i++) { var newCell = table.rows[i].insertCell(); newCell.contentEditable = true; newCell.innerHTML = "新单元格"; } }我需要指定某一列的列宽需要怎么设置
最新发布
07-14
要指定某一列的列宽,你可以使用`colgroup`和`col`元素来设置。在`colgroup`中,你可以为每一列指定一个`col`元素,并设置它的宽度。 在你的代码中,你已经使用了`colgroup`和`col`元素来设置第一列的宽度为40px。如果你想指定其他列的宽度,你可以在`colgroup`中添加相应数量的`col`元素,并为它们设置宽度。 下面是一个示例代码,演示如何指定第二列和第三列的宽度为100px: ```html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>鉴本</title> <style> table { border-collapse: collapse; } td, th { border: 1.5px solid black; padding: 5px; } table img { max-width: 150px; height: auto; } .popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); display: flex; align-items: center; justify-content: center; } .popup img { max-width: 100%; max-height: 100%; cursor: zoom-out; } </style> </head> <body> <div> <button onclick="addRow()">新增一行</button> <button onclick="addColumn()">添加一列</button> <button onclick="deleteRow()">删除行</button> <button onclick="deleteColumn()">删除列</button> <button onclick="changeSize()">调整大小</button> </div> <div id="popup" class="popup" style="display: none;"> <img id="popupImg"> </div> <table id="myTable"> <colgroup> <col style="width: 40px;"> <col style="width: 100px;"> <col style="width: 100px;"> </colgroup> <thead> <tr> <th>表头1</th> <th>表头2</th> <th>表头3</th> <!-- 其他表头列 --> </tr> </thead> <tbody> <tr> <td>单元格1</td> <td>单元格2</td> <td>单元格3</td> <!-- 其他单元格列 --> </tr> </tbody> </table> <script> var table = document.getElementById("myTable"); var imageColumnIndices = [8, 9, 10, 11, 12, 13]; function addRow() { var newRow = table.insertRow(); var cellsCount = table.rows[0].cells.length; for (var i = 0; i < cellsCount; i++) { var newCell = newRow.insertCell(); newCell.contentEditable = true; if (imageColumnIndices.includes(i)) { var newInput = document.createElement("input"); newInput.type = "file"; newInput.onchange = function() { previewImage(this); }; newInput.onclick = function() { showPopup(this.src); }; newCell.appendChild(newInput); } else { newCell.innerHTML = "新单元格"; } } } function addColumn() { var cellsCount = table.rows[0].cells.length; var col = document.createElement("col"); col.style.width = "100px"; table.getElementsByTagName("colgroup")[0].appendChild(col); for (var i = 0; i < table.rows.length; i++) { var newCell = table.rows[i].insertCell(); newCell.contentEditable = true; newCell.innerHTML = "新单元格"; } } </script> </body> </html> ``` 在这个示例中,我添加了两个`col`元素到`colgroup`中,并为它们设置宽度为100px。这样,第二列和第三列的宽度就被指定为100px。 希望这个示例能够帮助你指定某一列的列宽度。如果还有其他问题,请随时提问!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值