如何使用下拉列表执行Ajax发布?例如,我选择第一项,然后,li>a
的id值将被发送到php页面(data.php)。你有什么想法吗?
<div style="width: 162px;">
<dl style="" class="dropdown">
<dt>
<a class="" id="linkglobal" style="cursor: pointer;"></a>
</dt>
<dd>
<ul style="display: none;" id="ulglobal">
<li><a id="1" href="#">One</a></li>
<li><a id="2" href="#">Two</a></li>
</ul>
</dd>
</dl>
<div>
感谢
答案 0 :(得分:1)
$(function(){
$("#ulglobal a").click(function(){
var selectedId=$(this).attr("id");
$.post("data.php" { id : selectedId },function(data){
// do whatever with the response.
});
});
});
以下是工作示例:http://jsfiddle.net/nGPw9/2/