Current location - Quotes Website - Signature design - How to block the share button in the upper right corner with js after opening the video in WeChat built-in browser?
How to block the share button in the upper right corner with js after opening the video in WeChat built-in browser?
Hide the button in the upper right corner of WeChat page, and you can use the following code:

Document. AddeventListener ('WeixinsbridgeReady', function onBridgeReady() {

//The API below hides the upper right button.

weixinsbrbridge . call(' hideOptionMenu ');

});

Document. AddeventListener ('WeixinsbridgeReady', function onBridgeReady() {

//The API below shows the buttons in the upper right corner.

weixinsbridge . call(' show option menu ');

});