关于<HTML:TEXT>中的onchange事件无法触发
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于<HTML:TEXT>中的onchange事件无法触发相关的知识,希望对你有一定的参考价值。
JSP页面中涉及代码:
<script>
function setButton(type)
document.forms[0].buttonType.value=type;
function changepost(type)
setButton(type);
document.forms[0].submit();
</script>
<html:text property="kpxh" size="12" onchange="changepost('120')"/>
其余部分代码略
然后问题就出现了 当我改变文本框KPXH的值时候onchange事件并没有触发,buttontype的值并没有变成120 ,网上有人说对于IE浏览器onchange事件触发条件需追加鼠标焦点的改变,不知道是真的吗?
造成这种原因有哪些可能,希望有遇到过同样问题的兄弟帮忙分析,本人财富现已0,所以………… 还请大家见谅啊!
onkeyup=changepost('120')试下
JS显示隐藏节点
<tr>
<td class="emBold"><font color="#FF0000">*</font> State:</td>
<td>
<asp:DropDownList ID="ddlState" runat="server" onchange="CheckState()"/>
<asp:RequiredFieldValidator ID="rfvState" runat="server" ErrorMessage="The State is required" ControlToValidate="ddlState"/>
</td>
</tr>
//ID为"rfvState"的父节点的上一个兄弟节点的第一个子节点,即红色星号*显示
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.visibility = "visible";
//ID为"rfvState"的父节点的上一个兄弟节点的第一个子节点,即红色星号*隐藏
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.visibility = "hidden";
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.display = "block";
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.display = "inline-block";
//将<font>节点样式全部隐藏,即红色星号*和占位的空白都删除,State会最靠左顶格显示
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.display = "none";
var St = "";
function CheckState() {
St = document.getElementById("ddlState").value;
}
function CheckCountry() {
if (document.getElementById("ddlCountry").value == "USA") {
document.getElementById("ddlState").value = St;
PackageinfoValidatorsStAndZip(true);
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.visibility = "visible";
document.getElementById("rfvZipCode").parentElement.previousElementSibling.firstChild.style.visibility = "visible";
} else {
document.getElementById("ddlState").value = "";
PackageinfoValidatorsStAndZip(false);
document.getElementById("rfvState").parentElement.previousElementSibling.firstChild.style.visibility = "hidden";
document.getElementById("rfvZipCode").parentElement.previousElementSibling.firstChild.style.visibility = "hidden";
}
以上是关于关于<HTML:TEXT>中的onchange事件无法触发的主要内容,如果未能解决你的问题,请参考以下文章