初始化后事件:
var a=document.getElementsByName('TEXT0')//TEXT0为参数面板中的控件名大写
var value=a[0].value
$("span.linkspan div").bind("mouseover",function(){
$(this).css("color","red");
a[0].value=$(this).text()
}).bind("mouseleave",function(){
$(this).css("color","blue");
a[0].value=value
})