关于JavaScript中文本框的onChange问题
发布网友
发布时间:2023-12-04 13:56
我来回答
共5个回答
热心网友
时间:2024-11-15 16:39
哦,明白你的意思了我还以为你说那个onchange事件有问题呢
你要的效果应该这样弄:
onpropertychange="window.open('2.htm')
不能用onChange了
已经帮你测试过了!:)
热心网友
时间:2024-11-15 16:39
这样改就好了,刚试过,通过的:
<input type="text" maxlength="50" size="50" onChange="javascript:window.open('2.htm')">
热心网友
时间:2024-11-15 16:40
你的变化是通过程序来的,不是通过输入,你最好改成这样
<form id="test" method="POST">
<input type="text" maxlength="50" size="50">
<Script>
function ChangeText()
{
document.forms[0].elements[0].value = Date();
window.setTimeout("ChangeText()",1000);
}
ChangeText();
window.open("2.htm");>
</Script>
</form>
热心网友
时间:2024-11-15 16:40
onblur="ChangeQuantity()"
<input type="text" maxlength="50" size="50" onblur="Change()">
<Script>
function Change()
{
window.open('2.htm');
}
</Script>
热心网友
时间:2024-11-15 16:41
少了一个";" 分号 ^_^