我有一个jsp页面,我想用JS调用,但我得到脚本0错误,这里是调用者JS方法
function getCustomerNameValues(selectedMarketSegment,selectedCustomerCountry){
$.post("myjsp.jsp", { attributeName: "attributeValue"},
function(data){
document.getElementById("CustomizedComboBox").options=data;});
我的“myjsp.jsp”与包含调用方法的JSP存在于同一目录中。
请提出任何建议。