基本上我有一个字符串变量,我使用下面的代码将此字符串变量传递给javascript函数。
Chart1.Series["Series1"].Points[counter].MapAreaAttributes = "onmouseover=\"showAlert("+tempString+",event);\"";
我的javascript函数如下:
function showAlert(stringVal,ex) {
//var temp = document.getElementById("HTxtFieldPopIp").value;
// temp = "testing";
// alert(temp);
alert(stringVal);
}
但这并没有给我一个警告框。
当我删除参数并运行注释的代码段时,也会发生同样的情况。有什么建议么。
最佳答案
您需要引用字符串:
"onmouseover=\"showAlert("+tempString+",event);\""
变成:
"onmouseover=\"showAlert('"+tempString+"',event);\""
因此,如果tempString等于foo,则动态生成的js将是:
onmouseover="showAlert('foo',event);"