它不適用於我..這是正確的。我在這一行data: "ch=" + dropdown&"ch2=" + dropdown2&"ch3=" + dropdown3,
懷疑任何可以請這僅僅是爲我JavaScript代碼發送日期到PHP頁面不工作
<script>
function dynamic_Select(dropdown) {
$.ajax({
type: "GET",
url: 'att-filt.php',
data: "ch=" + dropdown&"ch2=" + dropdown2&"ch3=" + dropdown3,
dataType: "html",
success: function(html){ $("#txtResult").html(html); $("#firstresult").css("display", "none"); }
});
}
</script>
<form>
<input type="text" id="dropdown" name="dropdown">
<input type="text" id="dropdown2" name="dropdown1">
<input type="text" id="dropdown3" name="dropdown2">
<input type="button" value="submit" onclick="dynamic_Select(this.value)">
</form>
沒有&需要在報價 – mplungjan
@mplungjan謝謝..我試圖把它移動到裏面的價格。但不工作。 console:'[23:08:35.667] ReferenceError:dynamic_Select沒有定義@ ......./test.php:1' – user2457175
@mplungjan它的工作兄弟。它的工作原理:D非常感謝 – user2457175