将jquery添加到复合控件中

发布于 2024-09-06 21:31:28 字数 201 浏览 2 评论 0原文

我正在创建一个复合控件,它有一个文本框并使用 jquery 插件添加水印。可以说我有一个看起来像这样的基本功能

$(function () {$('#MyTextBoxID').watermark('Enter your username');});

有人可以建议我需要做什么来插入上面的内容吗?

蒂亚!

I am creating a composite control that has a textbox and uses a jquery plugin to add a watermark. Lets say I have a basic function that looks like this

$(function () {$('#MyTextBoxID').watermark('Enter your username');});

Can anyone suggest what I need to do to insert the above?

TIA!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

中性美 2024-09-13 21:31:28

您可以注册启动脚本并使用它可以执行以下操作:


 Dim cs As ClientScriptManager = Page.ClientScript
 If (Not cs.IsStartupScriptRegistered(cstype, csname1)) Then
      Dim cstext1 As String = "$(function () {$('#" & Me.ClientID & "').watermark('Enter your username');});"
      cs.RegisterStartupScript(cstype, csname1, cstext1, True)

End If



You can register a startup script and using it you can do following:


 Dim cs As ClientScriptManager = Page.ClientScript
 If (Not cs.IsStartupScriptRegistered(cstype, csname1)) Then
      Dim cstext1 As String = "$(function () {$('#" & Me.ClientID & "').watermark('Enter your username');});"
      cs.RegisterStartupScript(cstype, csname1, cstext1, True)

End If



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