本文介绍了Microsoft JScript运行时错误:使用jquery时预期的对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 Hai 这是我的代码 i我收到错误,因为Microsoft JScript运行时错误:使用jquery时预期的对象 HaiHere is my codei am getting the error as Microsoft JScript runtime error: Object expected while using jquery<script type="text/jscript"> $(document).ready(function () { $("#SUBJECT_TO_LIMIT").blur(function () { var x = $("#SUBJECT_TO_LIMIT").val(); if (x>100) {// alert(x); document.getElementById('SUBJECT_TO_LIMIT').style.borderColor = "red"; document.getElementById('SUBJECT_TO_LIMIT').focus(); return false; } else { document.getElementById('SUBJECT_TO_LIMIT').style.borderColor= ''; return true; } }); });</script> 推荐答案 这篇关于Microsoft JScript运行时错误:使用jquery时预期的对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-23 02:17