1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
js( JavascriptFunction(parameters) ) xml中执行一个javascript的函数. 需要执行的js可以先在html中定义或引入,再在xml中使用js动作调用,如果要插入xml中变量作为js函数的参数,需要用get获取变量的值在代入. 注意:js必须在网页服务器情况下执行,才生效. 样例: Code in the .html or .js file: 以下是一个已定义的js的function function victu(p1, p2, p3) { alert(p1 + ": " + p2 + " / " + p3); } Code in the xml file: 在xml中调用形式如下: js( victu('Lookat', get(view.hlookat), get(view.vlookat)) ); |
领主提醒:js的调用可以扩展krpnao现有功能,将js开发的一些软件和功能插入到krpano中。