我的网站上有一个链接,正在打开一个弹出窗口。我想禁用关闭" X"浏览器上的按钮。
注意:onBeforeUnload事件无效。
我需要另一种方法来做到这一点。
答案 0 :(得分:0)
查找关闭“X”按钮的id或类,并在弹出之前使用该类或id隐藏按钮,如$(“。class”)。hide()
答案 1 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="4dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/ic_action_person" />
</LinearLayout>
</ScrollView>