class Base{ int x = 1; static int y = 2; String name(){ return "mother"; } static String staticname(){ return "static mother"; } } class Subclass extends Base{ int x = 4; int y = 5; S…
$(document).ready(function(){ var mobile="{$user.mobile}"; var reg=/^(\d{3})\d{4}(\d{4})$/; mobile = mobile.replace(reg, "$1****$2"); $("#mymobile").text(mobile); }); …