javascriptからashxファイルを呼び出しています。HTTP ハンドラ ファイルは文字列値を返します。
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 の変数で受け取る必要があります。
これはどのように行うことができますか?