家属选择问题

发布于 2024-11-15 18:01:29 字数 911 浏览 0 评论 0原文

下面是一个表单的工作示例。如果用户在下拉菜单中选择“其他”,我需要显示附加文本字段。

不幸的是,我无法使用下面的示例,因为它需要 Mootools,但我使用 Jquery。不想强迫用户仅仅为了一种表单而再下载一个文件(Mootools)。

有什么方法可以在没有 Mootools 的情况下做到这一点吗?谢谢。

<form action='user_friends_manage.php' method='POST'>
<table cellpadding='0' cellspacing='0'>
<select name='friend_type' onChange="if(this.options[this.selectedIndex].value == 'other_friendtype') { $('other').style.display = 'block'; } else { $('other').style.display = 'none'; }">
<option></option>
<option value='1'>Friend</option>
<option value='2'>Family</option>
<option value='other_friendtype'>Other</option></select>
</td>
<td class='form2' style='display: none;' id='other'>&nbsp;<input type='text' class='text' name='friend_type_other' maxlength='50' /></td>
</tr></table></form>

Below is a working example of a form. I need to display additional text field if user selects "Other" in drop down menu.

Unfortunately, I can't use example below because it requires Mootools but I use Jquery. Don't want to force users to download one more file (Mootools) just for one form.

Is there any way how to do this without Mootools? Thanks.

<form action='user_friends_manage.php' method='POST'>
<table cellpadding='0' cellspacing='0'>
<select name='friend_type' onChange="if(this.options[this.selectedIndex].value == 'other_friendtype') { $('other').style.display = 'block'; } else { $('other').style.display = 'none'; }">
<option></option>
<option value='1'>Friend</option>
<option value='2'>Family</option>
<option value='other_friendtype'>Other</option></select>
</td>
<td class='form2' style='display: none;' id='other'> <input type='text' class='text' name='friend_type_other' maxlength='50' /></td>
</tr></table></form>

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

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

发布评论

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

评论(1

错爱 2024-11-22 18:01:29

试试这个:
*if(this.value=='other_friendtype') {document.getElementById('other').style.display='block'}*

在选择控件的 onchage 事件中。

try this:
*if(this.value=='other_friendtype') {document.getElementById('other').style.display='block'}*

in onchage event of select control.

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