如何使用 J-query 从外部 .js 文件访问服务器控件(例如文本框)?

发布于 2024-07-20 23:26:05 字数 85 浏览 8 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦亿 2024-07-27 23:26:05

您可以在内联代码中以相同的方式访问它:

$('#<%=mycontrol.ClientID%>')

You can access it the same way in the inline code:

$('#<%=mycontrol.ClientID%>')
池予 2024-07-27 23:26:05

你的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文