전용브라우저를 새로고침합니다. bIgnoreCache 값이 true인 경우, 기존 캐시를 무시하고 강력새로고침합니다.
| Parameters | Type | Description |
|---|---|---|
| bIgnoreCache | BOOL | [옵션]기존 캐시 무시 여부(기본값:false) |
| Type | Description |
|---|---|
| void | 없음 |
전용 브라우저 환경에서만 동작합니다.
function btnRefresh_on_mouseup()
{
// 새로고침
factory.xplusbrowserrefresh();
}
function btnRefresh2_on_mouseup()
{
// 강력새로고침
factory.xplusbrowserrefresh(true);
}