Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変数を使用してajaxURLを設定する方法はありますか?
function ajaxDialog() { $.ajax({ url: url, type: "POST", DataType: "html" });
前もって感謝します!
パラメータに変数を使用することもできます。
var url=""; var var1 = "somevalue" function ajaxDialog() { $.ajax({ url: url, type: "GET", data:{ data1: var1 } }); }
フィドル