私は選択フォームを持っています:
<form id="form" name="nameForm">
<select id="selectId" onchange="loadAjax('url.php');return false;">
<option>One</option
<option>Two</option>
</select>
</form>
ユーザーが選択したオプションを変更すると、URLの値を使用してajax関数がロードされます(GET経由)。
だから私はいくつかのことを試しましたが、これが私の最後の試みでした:
onchange="
var e = document.getElementById('form');
var strSel = e.form.selectId.value;
loadAjax('url.php?v='+strSel);
return false;
">
正しくありません。誰かがこれを正しく行う方法を知っていますか?