我想知道如何在mysql数据库中以复选框的形式搜索用户提供的输入。但在此之前,我需要将已检查的字段放入javascript数组/字符串中,以便我可以使用url将其传递给PHP。
<form>
<input type="checkbox" id="interests" name="interests" value="Food">`
<input type="checkbox" id="interests" name="interests" value="Movies">`
<input type="checkbox" id="interests" name="interests" value="Music">`
<input type="checkbox" id="interests" name="interests" value="Sports">`
</form>
我可以使用上面的其他表单元素,如文本和选择输入,但不知道如何为复选框执行此操作。请帮忙。 感谢
答案 0 :(得分:3)
而不是
<form>
<input type="checkbox" id="interests" name="interests[]" value="Food">
<input type="checkbox" id="interests1" name="interests[]" value="Movies">
<input type="checkbox" id="interests2" name="interests[]" value="Music">
<input type="checkbox" id="interests3" name="interests[]" value="Sports">
将名称属性从interests
更改为interests[]
应该解决你的问题。如果我对该属性的错误,我很抱歉,有点用PHP练习,但我很确定。无需使用javascript做任何事情。这种方式更容易。当然,如果你不想轻松......
关于通过数据库搜索它的第一个问题,我不明白为什么你需要?如果它是一个复选框,你确切地知道它应该是什么,所以就这样把它插入数据库就像这样:
INSERT INTO your_table values(user_id_i_guess, interests...);
你明白了吗?
答案 1 :(得分:2)
不要对多个元素使用相同的id
将复选框的名称更改为interests[]
<强>的jQuery 强>
var vals = [];
$(':checkbox:checked[name^=interests]').val(function() {
vals.push(this.value);
});
如果要将数组转换为逗号分隔的字符串,请尝试
val.join(',');
$(':checkbox:checked[name^=interests]')
选择器选中所有选中的复选框,name
以interests
开头。
答案 2 :(得分:0)
答案 3 :(得分:0)
假设您的表单有一个名称,
var c = [],
els = document.forms.formName.elements,
len = els.length;
for ( var i = 0; i < length; i++ ) {
if ( els[ i ].type === 'checkbox' ) {
// If you want to add only checked checkboxes, you can use:
if ( els[ i ].checked ) c.push( els[ i ].value );
// If you don't care, just use:
c.push( els[ i ].value );
}
}
console.log( c ); // Array of the checkboxes values
如果您不关心旧版浏览器,可以使用map
来获得更清晰的代码:
var c = [].map.call( document.forms.formName.elements, function( el ) {
if ( el.type === 'checkbox' ) {
if ( el.checked ) return el.value;
}
} );
如果你有jQuery,这里有一些codez:
var c = $( ':checkbox:checked' ).map( function() {
return $( this ).val();
} );
console.log( c ); // Array of the checkboxes values
// To be more precise (so, more performant), you can use the following selector:
$( ':checkbox:checked', document.forms.formName.elements )