我目前是开放图层的新手。而且我在使用jquery时使用mouseover事件时遇到了麻烦。我使用jquery创建工具提示,此工具提示将从地图输出坐标。这是我的例子。
<?php
$init = "
map.events.register('mouseover', map, function (e) {
var lonlat = map.getLonLatFromViewPortPx(e.xy);
var selMinX=lonlat.lon-sizeSelection;
var selMaxX=lonlat.lon+sizeSelection;
var selMinY=lonlat.lat-sizeSelection;
var selMaxY=lonlat.lat+sizeSelection;
alert(e.pageX); // Showing the event.pageX isn't working.
alert(selMinX); // Showing also one of the variables above isn't working.
alert('hello'); // This msgbox works.
$(document).ready( function() {
// Obviously I need to comment the mouseover function here
// since I am already using the mouseover event.
// $('#map').mouseover(function(e) {
$('<div id='tooltip'><input type='text' id='coor'/></div>').appendTo('body');
// });
});
});
";
?>
现在,我的地图没有显示,因为我认为将工具提示附加到正文部分的代码有问题。我想在这里实现的是在文档上显示带有输入框的div。
感谢。
答案 0 :(得分:0)
您需要更改工具提示附加的引用:
$("<div id='tooltip'><input type='text' id='coor'/></div>").appendTo('body');
请注意,第一个选择器的第一个和最后一个引号是双引号。这些属性用单引号引用。
我不知道php,但我认为你需要像这样逃避引用,不过php会这样做:
$(\"<div id='tooltip'><input type='text' id='coor'/></div>\").appendTo('body');