用C#将文本框TEXTBOX的值赋给网页控件webbower中的变量,再调用该网页中的函数
下面是我的WINFORM程序代码,想把TEXTBOX1、TEXTBOX2的值传给网页中的Lat、Long变量,并调用MoveMap2函数,请问有什么问题,本人初学,十分感...
下面是我的WINFORM程序代码,想把TEXTBOX1、TEXTBOX2的值传给网页中的Lat、Long变量,并调用MoveMap2函数,请问有什么问题,本人初学,十分感谢
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Google_Map
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
webBrowser1.Document.GetElementById("Lat").InnerText = textBox1.Text;
webBrowser1.Document.GetElementById("Long").InnerText = textBox2.Text;
}
private void button1_Click(object sender, EventArgs e)
{
double Lat = Double.Parse(this.textBox1.Text);
double Long = Double.Parse(this.textBox2.Text);
object oSum = webBrowser1.Document.InvokeScript("moveMap2", new object[] { Lat, Long });
}
}
}
我编译后点BUTTON地图没反应,是不是TEXTBOX没有输入到网页中,或是调用网页中函数的语句不对 展开
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Google_Map
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
webBrowser1.Document.GetElementById("Lat").InnerText = textBox1.Text;
webBrowser1.Document.GetElementById("Long").InnerText = textBox2.Text;
}
private void button1_Click(object sender, EventArgs e)
{
double Lat = Double.Parse(this.textBox1.Text);
double Long = Double.Parse(this.textBox2.Text);
object oSum = webBrowser1.Document.InvokeScript("moveMap2", new object[] { Lat, Long });
}
}
}
我编译后点BUTTON地图没反应,是不是TEXTBOX没有输入到网页中,或是调用网页中函数的语句不对 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询