在用户编辑个人资料表单中使用ajax打开facebox
我正在为我的网站制作用户个人资料编辑表单,并且我想在用户单击更改密码文本框时打开 Facebox。我可以在 jQuery 函数中进行哪些更改? 通常我使用这个函数:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox()
})
</script>
我的文本字段是:
<td>Change Password</td>
<td><input type="password" id="password1" name="password"></td>
I'm making a user profile edit form for my website, and I want to open facebox when a user clicks on the change password textbox. What changes can I do in my jQuery function?
Normally I'm using this function:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox()
})
</script>
And my text field is:
<td>Change Password</td>
<td><input type="password" id="password1" name="password"></td>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我决定使用这个
并编写 jquery 函数
并调用这个函数
,这解决了我的问题。谢谢
finally I decide to use this
and write jquery function
and call this function
and this solve my problem.thanks