如何在页面刷新时运行 If 和 Else 代码块 C# Web 应用程序?
我正在尝试实现一些逻辑,但为此我必须使用我没有得到的逻辑。当页面刷新时,我将如何运行 if 条件和 else 条件替代时间。
您的建议的逻辑希望是什么?
我的代码如下,
var activeColor = '#ff0000';
var inactiveColor = '#0000FF';
var points = [
new GLatLng(24.85229, 67.01703),
new GLatLng(24.914463, 67.0965958),
new GLatLng(24.86588, 67.06089),
new GLatLng(24.9726753, 67.06638),
new GLatLng(24.840023, 67.24285),
new GLatLng(24.85229, 67.01703)
];
var polyline = new GPolyline(points, '#ff0000', 5, 0.7);
GEvent.addListener(polyline, 'click', function() {
var color = inactiveColor;
inactiveColor = activeColor;
activeColor = color;
polyline.setStrokeStyle({ color: activeColor });
});
map.addOverlay(polyline);
}
}
function reFresh() {
location.reload(true)
}
window.setInterval('reFresh()',20000);
如何在页面刷新时更改折线颜色(红色和蓝色)我们如何在此处使用 if else 条件?
希望您的建议..
I am trying to implement some logics, but for that I have to use logic which I am not getting. How would I run an if condition and else condition alternative time when the page refreshes.
What would be the logic hopes for your suggestions?
my code is below,
var activeColor = '#ff0000';
var inactiveColor = '#0000FF';
var points = [
new GLatLng(24.85229, 67.01703),
new GLatLng(24.914463, 67.0965958),
new GLatLng(24.86588, 67.06089),
new GLatLng(24.9726753, 67.06638),
new GLatLng(24.840023, 67.24285),
new GLatLng(24.85229, 67.01703)
];
var polyline = new GPolyline(points, '#ff0000', 5, 0.7);
GEvent.addListener(polyline, 'click', function() {
var color = inactiveColor;
inactiveColor = activeColor;
activeColor = color;
polyline.setStrokeStyle({ color: activeColor });
});
map.addOverlay(polyline);
}
}
function reFresh() {
location.reload(true)
}
window.setInterval('reFresh()',20000);
How to change poly line color alternatively red and blue when page refresh how can we use if else condition here ??
hopes for your suggestions..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的实际使用情况,可以是会话变量,也可以是保存在控件中的值。
Depending upon your actual usage, either a session variable or a value kept in a control.