|
|
@@ -189,9 +189,13 @@ US_Browser.CreatBrower=function (address,flag) {//创建窗口,url,是否为
|
|
|
document.body.removeChild(BrowerContainer);//移除当前webview
|
|
|
};
|
|
|
// 标签页右键‘关闭标签’
|
|
|
- $("#DelectTags")[0].onclick = function () {
|
|
|
- ListBody.tag_close.onclick();
|
|
|
- US_Browser.MouseMenu($("#US_TagSet")[0],this,event);
|
|
|
+ li.onmousedown = function (e) {
|
|
|
+ if(e.button == 2 ){
|
|
|
+ US_Browser.MouseMenu($("#US_TagSet")[0],this,event);
|
|
|
+ $("#DelectTags")[0].onclick = function(){
|
|
|
+ ListBody.tag_close.click(0)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
webview.src=address;//给webview的src传值
|
|
|
US_Browser.Bind();
|