次の 2 つの位置設定の違いは何ですか?
設定1:(分かりやすい)
$("#myinput").autocomplete({
source: myArray,
position: { my: "**left top**", at: "right top" }
});
設定 2: (紛らわしい)
$("#myinput").autocomplete({
source: myArray,
position: { my: "**top left**", at: "right top" }
});