I've create two button which allow users to change the font size of texts in my webpage.It's work nice, but after refresh or reopen the page the font size always back to the normal size. So how to keep font size always 150% after page refresh or reopen?
Here is my jQuery code:
$(document).ready(function() {
$("#l").click(function() {
$("p").css("font-size","150%");
});
$("#n").click(function() {
$("p").css("font-size","100%");
})
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…