在一个页面中,我有许多名称为数组格式的文本框。当执行函数或发生事件时,我想在其中一个中放置一个值“测试”。但是我的 jquery 代码将值放在所有文本框中。我也不能在生成框架时将 ID 放入文本框。
<input type="text" maxlength="255" name="School[school_name]">
<input type="text" maxlength="255" name="School[contact_person]">
<input type="text" maxlength="255" name="School[test]">
$('input:text[name=School[school_name]]').val('test');
谢谢抗体