我从javascript调用ashx文件。 Http Handler文件返回字符串值。
context.response.write(string value);
<script type="text/javascript">
$(window).load(function(){
$('area').each(function () {
var area = $(this),
alt = area.attr('id');
if (alt != null) {
area.mouseenter(function () {
$('#dhtmltooltip').load("Search_CS.ashx?q=" +alt);
ddrivetip('', 300);
}).mouseleave(function () {
$('#dhtmltooltip').html('');
hideddrivetip();
});
}
});
我必须在javascript中的变量中接收此字符串。
如何做到这一点?
答案 0 :(得分:0)
我猜你没有提出任何ajax请求。这page有帮助吗? 有一个名为“insertCustomerCallback”的函数调用,它将从处理程序返回html。在那里你需要编写代码。 例如,
function insertCustomerCallback(html) {
//write your code
}