Heim > Fragen und Antworten > Hauptteil
var id=Math.random();
//var id="mm"
$('body').html('<p id='+id+'>hha</p>');
$('#'+id).removeAttr('id');
阿神2017-04-11 11:28:27
因为生成的id中包含小数点,这个刚好与class选择器冲突了,不建议在id中包含小数点,这个需要这样改才能选择到这个元素
$(('#'+id).replace('.', '\\.')).removeAttr('id');
迷茫2017-04-11 11:28:27
数字是不允许作为选择器使用的,你去控制台看报错
还有就是你去控制台
document.querySelector('#1')
// Uncaught DOMException: Failed to execute 'querySelector' on 'Document': '#1' is not a valid selector.
可以使用原生的另一个方法试下,
document.getElementById('#1')
//null
你改写成 getElementById
试下
黄舟2017-04-11 11:28:27
生成随机字符串:
randomString(6);
function randomString(len) {
len = len || 32;
var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678';//可以自定义
var maxPos = $chars.length;
var pwd = '';
for(i = 0; i < len; i++) {
pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
}
return pwd;
}