我在看这个小提琴
$('.myBox input:checkbox').change(function(){
var tempValue='';
tempValue=$('.myBox input:checkbox:checked').map(function(n){ //map all the checked value to tempValue with `,` seperated
return this.value;
}).get().join(',');
$('#display').html(tempValue);
})
将选中复选框的值添加到同一页面上的 URL 的最佳方法是什么?
显然我不能<div id="display"></div>
在 URL 中添加。
理想情况下,我想在页面底部显示一个静态链接,如果选中复选框,该链接将具有动态 Javascript 变量。
谢谢你。
萨沙。