今天看同事的代码遇到了一些js问题。开始不懂查资料明白了,这里与大家分享避免走弯路。
window.location.reload()刷新
each()方法
遍历
$(document).ready(function(){
$("button").click(function(){
$("li").each(function(){
alert($(this).text());
});
});
})
each(function(index, element){
});
replace()函数
replace(mark, "<mark>$1</mark>")
把mark用"<mark>$1</mark>"替代
$1是标记的意思就是前边的mark
name = "Doe, John";
name.replace(/(\w+)\s*, \s*(\w+)/, "$2 $1");
John, Doe