js文件名假设为:ss.js,内容如下:function max(a,b){return (a>=b?a:b);} Html文件名假设为:ss.html,内容如下:
function max_value (x,y) { return x >= y ? x : y;}