For-example I\'ve got a code:
8条回答 南方客 (楼主) 2021-01-06 00:07 $(document).ready(function () { $('#types').change(function () { if ($('#types').val() == 'Other') { $('#other').show(); } else { $('#other').hide(); } }); }); Type 1 Type 2 Type 3 Other 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
$(document).ready(function () { $('#types').change(function () { if ($('#types').val() == 'Other') { $('#other').show(); } else { $('#other').hide(); } }); }); Type 1 Type 2 Type 3 Other