我有这样的链接我需要在带有城市 ID 或名称的对话框中显示城市的详细信息,但无法发送数据
<a class="dot" style="top:110px; left:145px;" continent="NA" id="1" name="1"></a>
我需要单击时显示弹出对话框,但单击后对话框未打开
<script language="javascript" type="text/javascript">
$('a.dot').click(function(){
var vid=$(this).attr('id');
var vname=$(this).attr('name');
var vcity=$(this).attr('city');
$.ajax({
type : GET,
data:{id : vid , name : vname , city : vcity},
url : "ajax.php",
success : function(data){
$('#dialog-message').html(data);
}
});
});
</script>
<a class="dot" style="top:110px; left:145px;" continent="NA" id="1" name="1" city="teh"></a>
<div id="dialog-message">
</div>
ajax.php 代码是:
if(isset($_GET)){
echo '<script>
$(function() {
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>
<div id="dialog-message">
' . $_GET[name] . ',' . $_GET[id] . ',' . $_GET[city] . '
</div>
';
}