我想爲$(「。選擇器」)使用this.value,$(「#style_background」)是我的保存按鈕。當我使用這個代碼就像this.value即將'保存',我怎麼能做到這個dania,seablue。使用此作爲第二個變量
$("#style_background").click(function(){
if ($(".selector").is(":checked")) {
document.cookie = "background=" + this.value + ";" + "path=/";
} else {}
});
HTML
<li>
<input type="radio" class="selector" id="cookie_dania" name="background" value="dania">
</li>
<li>
<input type="radio" class="selector" id="cookie_seablue" name="background" value="seablue">
</li>
*我想用THIS.VALUE爲$( 「選擇 」)的雙選中的值使用$(「 #style_background」)是我保存按鈕*不是很清楚 – guradio
「background =」+ this.value即將到來保存我想要獲得$(「。selector」)。使用此值 – d3esligner