亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何使用 HTML 表單 [代碼附加] 中的 GET 或 POST 從 javascript

如何使用 HTML 表單 [代碼附加] 中的 GET 或 POST 從 javascript

POPMUISE 2023-11-12 15:10:45
如何使用 GET 或 POST 檢索 CITY 值,就像可以使用 $_POST['stt'] 使用 STATE 值一樣?ps:堆棧溢出的新手,所以請建議更好的提問方式:)var state_arr = new Array("Andaman & Nicobar");var s_a = new Array();s_a[0] = "";s_a[1] = " Alipur | Andaman Island | Anderson Island | Arainj-Laka-Punga | Austinabad | Bamboo Flat | Barren Island ";function print_state(state_id) {  // given the id of the <select> tag as function argument, it inserts <option> tags  var option_str = document.getElementById(state_id);  option_str.length = 0;  option_str.options[0] = new Option('Select State', '');  option_str.selectedIndex = 0;  for (var i = 0; i < state_arr.length; i++) {    option_str.options[option_str.length] = new Option(state_arr[i], state_arr[i]);  }}function print_city(city_id, city_index) {  var option_str = document.getElementById(city_id);  option_str.length = 0; // Fixed by Julian Woods  option_str.options[0] = new Option('Select City', '');  option_str.selectedIndex = 0;  var city_arr = s_a[city_index].split("|");  for (var i = 0; i < city_arr.length; i++) {    option_str.options[option_str.length] = new Option(city_arr[i], city_arr[i]);  }}print_state("sts");<form>  <select onchange="print_city('state', this.selectedIndex);" id="sts" name="stt" class="form-control" required></select>  <select id="state" class="form-control" required></select></form>
查看完整描述

1 回答

?
翻過高山走不出你

TA貢獻1875條經驗 獲得超3個贊

使用此功能,您將獲得城市和州在表單操作屬性中給出您的文件名


var state_arr = new Array("Andaman & Nicobar");


var s_a = new Array();

s_a[0] = "";

s_a[1] = " Alipur | Andaman Island | Anderson Island | Arainj-Laka-Punga | Austinabad | Bamboo Flat | Barren Island ";


function print_state(state_id) {

  // given the id of the <select> tag as function argument, it inserts <option> tags

  var option_str = document.getElementById(state_id);

  option_str.length = 0;

  option_str.options[0] = new Option('Select State', '');

  option_str.selectedIndex = 0;

  for (var i = 0; i < state_arr.length; i++) {

    option_str.options[option_str.length] = new Option(state_arr[i], state_arr[i]);

  }

}


function print_city(city_id, city_index) {

  var option_str = document.getElementById(city_id);

  option_str.length = 0; // Fixed by Julian Woods

  option_str.options[0] = new Option('Select City', '');

  option_str.selectedIndex = 0;

  var city_arr = s_a[city_index].split("|");

  for (var i = 0; i < city_arr.length; i++) {

    option_str.options[option_str.length] = new Option(city_arr[i], city_arr[i]);

  }

}


print_state("sts");

<form method="get" action="filename.html">

  <select onchange="print_city('state', this.selectedIndex);" id="sts" name="state" class="form-control" required></select>

  <select id="state" name="city" class="form-control" required></select>

  <input type="submit" value="submit"/>

</form>


查看完整回答
反對 回復 2023-11-12
  • 1 回答
  • 0 關注
  • 156 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號