Jquery:对文本字段使用 onchange() 时出现对象预期错误
我有一个像这样的文本字段,
<input type = "text" name ="text1" id ="text1" onchange="displayresult()">
function displayresult(){
alert("testing")
}
它在 IE6.o 中给出了对象预期错误。当我们在 mozilla 中调试时,它以这种方式指向函数名称
`function onchange(event) {
displayresult(); //The cursor is pointed over here
}`
我该如何纠正这个问题
i have a textfield like this
<input type = "text" name ="text1" id ="text1" onchange="displayresult()">
function displayresult(){
alert("testing")
}
It is giving object expected error in IE6.o . when we debug in mozilla it is pointing to function name in this way
`function onchange(event) {
displayresult(); //The cursor is pointed over here
}`
How can i correct this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据您的描述和示例,我认为您的 displayresult() 函数声明低于“onchange”输入文本用法。下面的解决方案使用 document.ready() 事件,然后使用 ID 选择器和 .change() 来注册您的“onchange”需求。您可以删除 onchange="displayresult();"如果你使用我下面的代码,在你的html中
Going by your description and your example, I think your displayresult() function declaration is below the 'onchange' input text usage. The solution below uses the document.ready() event, and then uses the ID selector and .change() to register your 'onchange' needs. you can remove the onchange="displayresult();" in your html if you use my code below
如果您使用的是 jQuery - 您应该能够通过 jQuery 以及它的 change() 来使用选择来帮助您,这样您就不需要在输入声明中使用
displayresult()
。这应该会有所帮助:示例:
这样,每次文本框中的文本发生更改时,您都会收到警报。
If you are using jQuery - you should be able to just use selection via jQuery along with it's change() to help you out, that way you wouldn't need the
displayresult()
in your input declaration. This should help out out:Example:
So that each time the text is changed in your textbox, you will be alerted.
您没有提供足够的信息来准确确定发生错误的原因。我猜想您的函数在页面上定义得不够快。另外,您已将此问题标记为与 jQuery 相关,但在您的代码中您根本没有引用 jQuery。
如果你想使用 jQuery Rionmonster 是正确的。
如果您想在没有 jQuery 的情况下使用 javascript,那么您需要提供更多信息。
You have not provided enough information to accurately determine why the error is occurring. I would guess that your function is not defined soon enough on the page. Also, you've tagged this question as jQuery related but in your code you are not referencing jQuery at all.
If you want to use jQuery Rionmonster is correct.
If you want to use javascript without jQuery, then you need to provide more information.