如何使用 J-query 从外部 .js 文件访问服务器控件(例如文本框)?
我需要使用 J-query 更改文本框的高度。 我需要在外部 .js 文件中编写此代码。 如何访问外部 .js 文件中 J-query 中的文本框高度?
I need to change the height of a textbox using J-query. I need to write this code in an external .js file. How do I access textbox height in J-query in the external .js file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在内联代码中以相同的方式访问它:
You can access it the same way in the inline code:
你的 js 位于外部文件中并不重要,你可以以相同的方式内联或外部编写它。
如果文本框有 ID,您可以使用:
$("#Textbox1").height();
http://docs.jquery.com/CSS/height
It doesn't matter that your js is in an external file, you'd write it the same way inline or external.
If the textbox has an ID you can use:
$("#Textbox1").height();
http://docs.jquery.com/CSS/height