我在jQuery中使用window.open
进行点击事件。
问题是我要禁用位置栏,它可以在Safari中使用,但不能在Chrome中使用。
我听说某个地方无法摆脱Chrome中的位置栏,这是真的吗?
以下是代码:
var features = "left=200,toolbar=0,resizable=0,scrollbars=0,location=0,menubar=0,status=0,width=510,height=547";
window.open(URL, NAME, features);
答案 0 :(得分:4)
你无法在chrome中删除它,但是location=0
会使它至少无法编辑。它仍然会出现,但它们无法改变位置。过去,你无能为力。