自己做网站广告法,商城网站开发 价格,邯郸做网站哪家好,我要建网站1.选择器 id选择器: $(#btnShow) class选择器: $(.banner) tag选择器: $(input) 2.常用方法 取 / 设value: $(#btnShow).val() / $(#btnShow).val(sss) 取 / 设text: $(#btnShow).text() / $(#btnShow).text(sss) 取 / 设innerHtml $(#btnShow).html()…1.选择器 id选择器: $(#btnShow) class选择器: $(.banner) tag选择器: $(input) 2.常用方法 取 / 设value: $(#btnShow).val() / $(#btnShow).val(sss) 取 / 设text: $(#btnShow).text() / $(#btnShow).text(sss) 取 / 设innerHtml $(#btnShow).html() / $(#btnShow).html(sss) 取 / 设style $(#btnShow).css(color) / $(#btnShow).css(color, red) 取 / 设attrbute $(#btnShow).attr(name) / $(#btnShow).attr(name, sss) 3.ajax $.get(url, function(returnData) { //do something }); $.post(url, {name:aaa, account: hehe}, function(returnData) { //do something }); 转载于:https://www.cnblogs.com/gz-fenglang/p/7760755.html