任何人都可以帮助我完成我的项目吗?我怎样才能在javascript中调用文本域详细信息?
function AddPushpin()
{
var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter());
shape.SetTitle(**//it should be coming from a textfield//**);
shape.SetDescription('This is shape number '+pinid);
pinid++;
map.AddShape(shape);
}
答案 0 :(得分:4)
的document.getElementById( 'myTextElementsId')。值
答案 1 :(得分:3)
<textfield id="shapeTitle"></textfield>
---- // -----
document.getElementById('shapeTitle').value
其中'shapeTitle'应对应于您需要值为。
的元素的ID