我有兩個單選按鈕。如果用戶選擇其中的一個,我希望我的代碼執行一個特定的功能。我需要從單選按鈕選擇中獲取值,並將其作爲「valueButton」在服務器端推送到我的函數中。猜猜我需要在客戶端的功能,但看起來應該如何?選擇Radiobutton做功能
的按鈕(客戶端):
<div>
<input type="radio" name="origin" id="radio-origin-1" value="ID1">
<label for="radio-origin-auto">Grupp 1</label>
</div>
<div>
<input type="radio" name="origin" id="radio-origin-2" value="ID2">
<label for="radio-origin-en">Grupp 2</label>
</div>
的功能(服務器端):
function dataSelect(valueButton){
if (valueButton == "ID1") {
ID1(); }
else if (valueButton == "ID2") {
ID2(); }
}
function ID1(){
MailApp.sendEmail("[email protected]", "subjects", GetDataFromSpreadsheet());}
function ID2(){
MailApp.sendEmail("[email protected]", "subjects", GetDataFromSpreadsheet());}
我將使用aja x請求,每次發射一個單選按鈕已被更改 –