CN112199130A - Binding function execution method, device, equipment and storage medium - Google Patents

Binding function execution method, device, equipment and storage medium Download PDF

Info

Publication number
CN112199130A
CN112199130A CN202011095502.9A CN202011095502A CN112199130A CN 112199130 A CN112199130 A CN 112199130A CN 202011095502 A CN202011095502 A CN 202011095502A CN 112199130 A CN112199130 A CN 112199130A
Authority
CN
China
Prior art keywords
binding
function
binding element
asynchronous
binding function
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202011095502.9A
Other languages
Chinese (zh)
Other versions
CN112199130B (en
Inventor
陶旭生
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shanghai Miaoyi Biotechnology Co Ltd
Original Assignee
Shanghai Miaoyi Biotechnology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Shanghai Miaoyi Biotechnology Co Ltd filed Critical Shanghai Miaoyi Biotechnology Co Ltd
Priority to CN202011095502.9A priority Critical patent/CN112199130B/en
Publication of CN112199130A publication Critical patent/CN112199130A/en
Application granted granted Critical
Publication of CN112199130B publication Critical patent/CN112199130B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/449Object-oriented method invocation or resolution
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/01Input arrangements or combined input and output arrangements for interaction between user and computer
    • G06F3/048Interaction techniques based on graphical user interfaces [GUI]
    • G06F3/0481Interaction techniques based on graphical user interfaces [GUI] based on specific properties of the displayed interaction object or a metaphor-based environment, e.g. interaction with desktop elements like windows or icons, or assisted by a cursor's changing behaviour or appearance

Abstract

The application relates to a method, a device, equipment and a storage medium for executing a binding function, wherein the method for executing the binding function comprises the following steps: triggering or losing focus of a binding element by detecting that a region outside the binding element is triggered, wherein the binding element is a focusable element; pushing a binding function corresponding to the binding element into an asynchronous queue; when the binding function is activated, the binding function is executed. By the method and the device, the problem that the execution of the binding function cannot be triggered in the related technology under the condition that the area outside the binding element is clicked or the binding element loses focus is solved.

Description

Binding function execution method, device, equipment and storage medium
Technical Field
The present application relates to the field of computers, and in particular, to a method and an apparatus for executing a binding function, a computer device, and a computer-readable storage medium.
Background
At present, technologies other than the existing click elements, for example, technologies such as clickowside and clickAway, are all implemented by the following scheme, as shown in fig. 1, first, the elements to be bound are isolated from the binding function and stored; secondly, registering event processing functions such as click, mouse, touch and the like on the Document object; and then, when the user clicks or touches a page element in the screen, triggering an Event binding function, transmitting an Event object serving as a parameter to the Event processing function by the browser, judging whether a target attribute (a target element node object) of the parameter is contained in the binding element in the function, and if so, executing the binding function, otherwise, not operating any Event.
A Window Proxy object (Window Proxy) is included in the Browsing Context object (Browsing Context), which encapsulates a current Window object (Window). And recording a current Active Document object (Active Document), which is the Document object (Associated Document) Associated with the window object corresponding to the context, namely the currently opened Document object.
Structurally, the browsing context can be nested: some elements within the document, such as < iframe >, may instantiate a new Browsing Context, these elements are referred to as browser Context containers (Browsing Context containers), and the instantiated Browsing Context is referred to as Nested Browsing Context; for a certain nested Browsing Context, the browser Context corresponding to the document where the container is located is called Parent Browsing Context (Parent Browsing Context), and is necessarily unique.
Since < iframe > is actually an independent browsing context, it has complete isolation from the parent document, as shown in fig. 2.
In the existing technology, Event processing functions such as click, mouse, touch and the like are registered on a Document object, and when the Event processing functions are executed, whether a target attribute in an Event object is contained in a binding element is judged. But when the < Iframe > element and its wrapped children are clicked on by the user, since it is an independent browsing context and the parent Document is completely isolated, none of these events registered on the Document will be triggered, which results in the bound function not being executed. Clicking on < iframe > causes these registered event execution functions to fail when the < iframe > element is embedded in the page.
At present, for the related art, if the binding function is in an area outside the binding element when clicked or the binding element loses focus, the execution of the binding function cannot be triggered by < iframe >, and an effective solution is not proposed yet.
Disclosure of Invention
The embodiment of the application provides a method and a device for executing a binding function, computer equipment and a computer-readable storage medium, which are used for at least solving the problem that in the related art, if the binding function is in an area outside a click binding element or the binding element loses focus, execution of the binding function cannot be triggered in an iframe.
In a first aspect, an embodiment of the present application provides a method for executing a bound function, including: detecting that a region outside of a binding element is triggered or that the binding element loses focus, wherein the binding element is a focusable element; pushing a binding function corresponding to the binding element into an asynchronous queue; when the binding function is activated, the binding function is executed.
In some embodiments, pushing the binding function corresponding to the binding element into the asynchronous queue includes: acquiring a storage object through a target attribute of a first event object; acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object; and pushing the binding function and the asynchronous cleaning function identification corresponding to the binding element into an asynchronous queue.
In some embodiments, after pushing the binding function corresponding to the binding element into the asynchronous queue, the method further includes: detecting that a binding function is not activated and a binding element is triggered or the binding element activates a focus state; acquiring a storage object through the target attribute of the second event object; and calling the asynchronous cleaning function identifier by using the timer attribute of the storage object to identify the corresponding asynchronous cleaning function to destroy the unexecuted bound function in the asynchronous queue.
In some of these embodiments, executing the binding function when the binding function is activated includes: detecting that an event circulating system of the browser activates and pushes a binding function into a stack memory; a binding function is executed.
In some embodiments, before detecting that a region outside of the binding element is triggered or the binding element loses focus, the method further comprises: the binding element and the first event object and the second time object.
In some embodiments, before detecting that a region outside of the binding element is triggered or the binding element loses focus, the method further comprises: the binding element is set as a focusable element.
In a second aspect, an embodiment of the present application provides a bound function executing apparatus, including: the device comprises a detection module, a focusing module and a focusing module, wherein the detection module is used for detecting that an area outside a binding element is triggered or the binding element loses focus; the pushing module is used for pushing the binding function corresponding to the binding element into the asynchronous queue; and the execution module is used for executing the binding function when the binding function is activated.
In some embodiments, the push module is further configured to obtain the storage object through a target attribute of the first event object; acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object; and pushing the binding function and the asynchronous cleaning function identification corresponding to the binding element into an asynchronous queue.
In a third aspect, an embodiment of the present application provides a computer device, which includes a memory, a processor, and a computer program stored on the memory and executable on the processor, and when the processor executes the computer program, the binding function execution method according to the first aspect is implemented.
In a fourth aspect, the present application provides a computer-readable storage medium, on which a computer program is stored, which when executed by a processor implements the method for executing a binding function according to the first aspect.
Compared with the related art, the method for executing the binding function provided by the embodiment of the application has the advantages that the triggering of the area outside the binding element or the loss of the focus of the binding element is detected, wherein the binding element is a focusable element; pushing a binding function corresponding to the binding element into an asynchronous queue; when the binding function is activated, the binding function is executed. The method and the device solve the problem that in the related technology, the execution of the binding function cannot be triggered by the iframe when the area outside the binding element is clicked or the binding element loses focus, and realize the function outside the iframe triggering click element.
The details of one or more embodiments of the application are set forth in the accompanying drawings and the description below to provide a more thorough understanding of the application.
Drawings
The accompanying drawings, which are included to provide a further understanding of the application and are incorporated in and constitute a part of this application, illustrate embodiment(s) of the application and together with the description serve to explain the application and not to limit the application. In the drawings:
fig. 1 is a diagram illustrating a binding function execution method according to the related art;
FIG. 2 is a diagram of a browsing context according to the related art;
FIG. 3 is a flow chart of a method for executing a binding function according to an embodiment of the present application;
FIG. 4 is an overall process flow diagram of a method of bound function execution in accordance with the preferred embodiments of the present application;
FIG. 5 is a preferred flow diagram of a method of bound function execution according to an embodiment of the present application;
fig. 6 is a block diagram of a binding function execution apparatus according to an embodiment of the present application;
fig. 7 is a schematic diagram of an electronic device according to an embodiment of the application.
Detailed Description
In order to make the objects, technical solutions and advantages of the present application more apparent, the present application will be described and illustrated below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the present application and are not intended to limit the present application. All other embodiments obtained by a person of ordinary skill in the art based on the embodiments provided in the present application without any inventive step are within the scope of protection of the present application.
It is obvious that the drawings in the following description are only examples or embodiments of the present application, and that it is also possible for a person skilled in the art to apply the present application to other similar contexts on the basis of these drawings without inventive effort. Moreover, it should be appreciated that in the development of any such actual implementation, as in any engineering or design project, numerous implementation-specific decisions must be made to achieve the developers' specific goals, such as compliance with system-related and business-related constraints, which may vary from one implementation to another.
Reference in the specification to "an embodiment" means that a particular feature, structure, or characteristic described in connection with the embodiment can be included in at least one embodiment of the specification. The appearances of the phrase in various places in the specification are not necessarily all referring to the same embodiment, nor are separate or alternative embodiments mutually exclusive of other embodiments. Those of ordinary skill in the art will explicitly and implicitly appreciate that the embodiments described herein may be combined with other embodiments without conflict.
Unless defined otherwise, technical or scientific terms referred to herein shall have the ordinary meaning as understood by those of ordinary skill in the art to which this application belongs. Reference to "a," "an," "the," and similar words throughout this application are not to be construed as limiting in number, and may refer to the singular or the plural. The present application is directed to the use of the terms "including," "comprising," "having," and any variations thereof, which are intended to cover non-exclusive inclusions; for example, a process, method, system, article, or apparatus that comprises a list of steps or modules (elements) is not limited to the listed steps or elements, but may include other steps or elements not expressly listed or inherent to such process, method, article, or apparatus. Reference to "connected," "coupled," and the like in this application is not intended to be limited to physical or mechanical connections, but may include electrical connections, whether direct or indirect. The term "plurality" as referred to herein means two or more. "and/or" describes an association relationship of associated objects, meaning that three relationships may exist, for example, "A and/or B" may mean: a exists alone, A and B exist simultaneously, and B exists alone. The character "/" generally indicates that the former and latter associated objects are in an "or" relationship. Reference herein to the terms "first," "second," "third," and the like, are merely to distinguish similar objects and do not denote a particular ordering for the objects.
The embodiment also provides a binding function execution method. Fig. 3 is a flowchart of a method for executing a binding function according to an embodiment of the present application, where the flowchart includes the following steps, as shown in fig. 3:
step S302, detecting that an area outside a binding element is triggered or the binding element loses focus, wherein the binding element is a focusable element;
step S304, pushing the binding function corresponding to the binding element into an asynchronous queue;
in step S306, when the binding function is activated, the binding function is executed.
Through the steps, after the area outside the binding element is detected to be triggered or the binding element loses focus, the binding function corresponding to the binding element is pushed into the asynchronous queue, and when the binding function is detected to be activated, the binding function is executed.
In some embodiments, pushing the binding function corresponding to the binding element into the asynchronous queue includes: acquiring a storage object through a target attribute of a first event object; acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object; and pushing the binding function and the asynchronous cleaning function identification corresponding to the binding element into an asynchronous queue.
In some embodiments, after pushing the binding function corresponding to the binding element into the asynchronous queue, the method further includes: detecting that a binding function is not activated and a binding element is triggered or the binding element activates a focus state; acquiring a storage object through the target attribute of the second event object; and calling the asynchronous cleaning function identifier by using the timer attribute of the storage object to identify the corresponding asynchronous cleaning function to destroy the unexecuted bound function in the asynchronous queue.
In some of these embodiments, executing the binding function when the binding function is activated includes: detecting that an event circulating system of the browser activates and pushes a binding function into a stack memory; a binding function is executed.
In some embodiments, before detecting that a region outside of the binding element is triggered or the binding element loses focus, the method further comprises: the binding element and the first event object and the second time object.
In some embodiments, before detecting that a region outside of the binding element is triggered or the binding element loses focus, the method further comprises: the binding element is set as a focusable element.
The embodiments of the present application are described and illustrated below by means of preferred embodiments.
Fig. 4 is a flowchart of the overall processing of a method for executing a binding function according to the preferred embodiment of the present application, as shown in fig. 4, specifically as follows:
1. and storing the input binding elements and binding functions into the Map storage class.
2. The binding element is set as a focusable element.
3. And binding the focusin and focusout events for the binding element.
4. Executing the focusout event pushes the binding function into the asynchronous queue.
5. And executing the binding function after the asynchronous queue is activated.
Fig. 5 is a preferred flowchart of a method for executing a binding function according to an embodiment of the present application, and as shown in fig. 5, the method for executing the binding function includes the following steps:
in step S501, the binding element is clicked or the focus is activated,
step S502, executing the processing function of the focusin Event, acquiring a target element through the target attribute of the Event object, calling the get method of the Map object and taking the target element as a key to acquire the storage object. The unexecuted bound function in the asynchronous queue is destroyed (here to avoid repeated calls to the bound function) using the timer attribute of the storage object as the key call clearTimeout function.
Step S503, when the user clicks a place outside the binding element or the binding element loses focus, executing a focusout Event, acquiring a target element through a target attribute of the Event object, calling a get method of a Map object and using the target element as a key to acquire a storage object, calling a setTimeout function to acquire a clear asynchronous id by using a timer attribute of the storage object, and pushing the binding function as a parameter into an asynchronous queue.
Step S504, when the binding function in the asynchronous queue is not activated, whether the binding element is clicked or the focus state is activated is judged, if yes, the step S502 is executed, otherwise, the step S505 is executed.
Step S505, the event circulation system of the browser is waited to activate the execution function in the asynchronous queue and push the execution function into the stack memory.
In step S506, a binding function is executed.
It should be noted that the steps illustrated in the above-described flow diagrams or in the flow diagrams of the figures may be performed in a computer system, such as a set of computer-executable instructions, and that, although a logical order is illustrated in the flow diagrams, in some cases, the steps illustrated or described may be performed in an order different than here.
The method comprises the steps of changing a binding element into a focusable element, combining foucusin and focusout events to click events except the element, checking whether an asynchronous clearing function exists or not when the element triggers the focusin event, destroying the binding function in an asynchronous queue if the asynchronous clearing function exists, pushing an execution function into the asynchronous queue and binding the asynchronous clearing function for the element when the focusout event is executed, and pushing the execution function in the asynchronous queue into a stack memory and executing the binding function if the binding function in the asynchronous queue is not destroyed.
The invention not only solves the problems that the Document object of the iframe element and the Document object of the father element are isolated, the event triggered in the iframe element, the father element is unknown, and how the father element can know that the event is triggered on the iframe element; the Iframe can solve the communication problem through the postMessage, but the embedded child page calls the postMessage to the parent page, and the child page may also have the possible idea of continuously embedding the Iframe element, so that three system pages or more are required to be written with the message communication code, a lot of redundant codes are brought, and a lot of safety problems are brought; the Iframe object has a plurality of possibilities in actual service, even a new Iframe may be replaced when tab is switched, and if real-time monitoring of the DOM causes extra performance consumption, how to solve the problem is provided.
The invention also solves the problem that iframes can not trigger the functions except the clicking elements, and the events are bound on the designated elements but not on the Document object, so that the expenses of events and variable DOM query are avoided, any event can be finally bubbled on the Document object, furthermore, the repeated triggering of the events is avoided in an asynchronous queue mode, and finally, the real-time DOM monitoring expenses caused by multiple iframes and nested sub-iframes can be avoided by using focusin and focusout events.
The present embodiment further provides a binding function executing apparatus, which is used to implement the foregoing embodiments and preferred embodiments, and the description of the binding function executing apparatus is omitted for brevity. As used hereinafter, the terms "module," "unit," "subunit," and the like may implement a combination of software and/or hardware for a predetermined function. Although the means described in the embodiments below are preferably implemented in software, an implementation in hardware, or a combination of software and hardware is also possible and contemplated.
Fig. 6 is a block diagram illustrating a structure of a bound function executing apparatus according to an embodiment of the present application, where, as shown in fig. 6, the apparatus includes:
a detection module 62, configured to detect that a region outside a binding element is triggered or that the binding element loses focus, where the binding element is a focusable element;
a pushing module 64, configured to push the binding function corresponding to the binding element into the asynchronous queue;
an execution module 66 for executing the binding function when the binding function is activated.
In some embodiments, the push module 64 is further configured to obtain the storage object through the target property of the first event object; acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object; and pushing the binding function and the asynchronous cleaning function identification corresponding to the binding element into an asynchronous queue.
The above modules may be functional modules or program modules, and may be implemented by software or hardware. For a module implemented by hardware, the modules may be located in the same processor; or the modules can be respectively positioned in different processors in any combination.
The disclosed embodiment provides an electronic device, as shown in fig. 7, which includes one or more processors 71 and a memory 72, and one processor 73 is taken as an example in fig. 7.
The controller may further include: an input device 73 and an output device 74.
The processor 71, the memory 72, the input device 73 and the output device 74 may be connected by a bus or other means, as exemplified by the bus connection in fig. 7.
The processor 71 may be a Central Processing Unit (CPU). The processor 71 may also be other general purpose processors, Digital Signal Processors (DSPs), Application Specific Integrated Circuits (ASICs), Field Programmable Gate Arrays (FPGAs) or other programmable logic devices, discrete gate or transistor logic devices, discrete hardware components, or combinations thereof. A general purpose processor may be a microprocessor or the processor may be any conventional processor or the like.
The memory 72, which is a non-transitory computer readable storage medium, may be used to store non-transitory software programs, non-transitory computer executable programs, and modules, such as program instructions/modules corresponding to the control methods in the embodiments of the present disclosure. The processor 71 executes various functional applications of the server and data processing by running non-transitory software programs, instructions and modules stored in the memory 72, i.e. implements the method of the above-described method embodiment.
The memory 72 may include a storage program area and a storage data area, wherein the storage program area may store an operating system, an application program required for at least one function; the storage data area may store data created according to use of a processing device operated by the server, and the like. Further, the memory 72 may include high speed random access memory, and may also include non-transitory memory, such as at least one magnetic disk storage device, flash memory device, or other non-transitory solid state storage device. In some embodiments, the memory 72 may optionally include memory located remotely from the processor 71, which may be connected to a network connection device via a network. Examples of such networks include, but are not limited to, the internet, intranets, local area networks, mobile communication networks, and combinations thereof.
The input device 73 may receive input numeric or character information and generate key signal inputs related to user settings and function control of the processing device of the server. The output device 74 may include a display device such as a display screen.
One or more modules are stored in the memory 72, which when executed by the one or more processors 71 perform the method shown in FIG. 1.
It will be understood by those skilled in the art that all or part of the processes of the methods of the embodiments described above can be implemented by a computer program to instruct related hardware, and the program can be stored in a computer readable storage medium, and when executed, the program can include the processes of the embodiments of the motor control methods described above. The storage medium may be a magnetic disk, an optical disk, a Read-only memory (ROM), a Random Access Memory (RAM), a flash memory (FlashMemory), a hard disk (hard disk drive, abbreviated as HDD) or a Solid State Drive (SSD), etc.; the storage medium may also comprise a combination of memories of the kind described above.
In addition, in combination with the method for executing the binding function in the foregoing embodiments, the embodiments of the present application may provide a computer-readable storage medium to implement the method. The computer readable storage medium having stored thereon computer program instructions; the computer program instructions, when executed by a processor, implement any of the binding function execution methods in the above embodiments.
The technical features of the embodiments described above may be arbitrarily combined, and for the sake of brevity, all possible combinations of the technical features in the embodiments described above are not described, but should be considered as being within the scope of the present specification as long as there is no contradiction between the combinations of the technical features.
The above-mentioned embodiments only express several embodiments of the present application, and the description thereof is more specific and detailed, but not construed as limiting the scope of the invention. It should be noted that, for a person skilled in the art, several variations and modifications can be made without departing from the concept of the present application, which falls within the scope of protection of the present application. Therefore, the protection scope of the present patent shall be subject to the appended claims.

Claims (10)

1. A method for bound function execution, comprising:
detecting that a region outside of the binding element is triggered or that the binding element loses focus, wherein the binding element is a focusable element;
pushing the binding function corresponding to the binding element into an asynchronous queue;
executing the binding function when the binding function is activated.
2. The method of claim 1, wherein pushing the binding function corresponding to the binding element into an asynchronous queue comprises:
acquiring a storage object through a target attribute of a first event object;
acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object;
and pushing the binding function corresponding to the binding element and the asynchronous cleaning function identifier into an asynchronous queue.
3. The method of claim 2, further comprising, after pushing the binding function corresponding to the binding element into an asynchronous queue:
detecting that the binding function is not activated and the binding element is triggered or the binding element activates a focus state;
acquiring a storage object through the target attribute of the second event object;
and calling the asynchronous cleaning function corresponding to the asynchronous cleaning function identification to destroy the unexecuted binding function in the asynchronous queue by using the timer attribute of the storage object.
4. The method of claim 1, wherein executing the binding function when the binding function is activated comprises:
detecting that an event circulating system of the browser activates the binding function and pushes the binding function into a stack memory;
and executing the binding function.
5. The method of any of claims 1 to 4, further comprising, before detecting that a region outside of the binding element is triggered or that the binding element loses focus:
binding the binding element with the first event object and the second time object.
6. The method of any of claims 1 to 4, further comprising, before detecting that a region outside of the binding element is triggered or that the binding element loses focus:
setting the binding element as a focusable element.
7. A bound function executing apparatus, comprising:
a detection module, configured to detect that a region outside the binding element is triggered or the binding element loses focus, where the binding element is a focusable element;
the pushing module is used for pushing the binding function corresponding to the binding element into an asynchronous queue;
and the execution module is used for executing the binding function when the binding function is activated.
8. The apparatus of claim 7, wherein the push module is further configured to retrieve the storage object via a target property of the first event object; acquiring an asynchronous cleaning function identifier by using a timer attribute of a storage object; and pushing the binding function corresponding to the binding element and the asynchronous cleaning function identifier into an asynchronous queue.
9. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, characterized in that the processor implements the binding function execution method according to any one of claims 1 to 6 when executing the computer program.
10. A computer-readable storage medium, on which a computer program is stored, which, when being executed by a processor, carries out the method for bound function execution according to any one of claims 1 to 6.
CN202011095502.9A 2020-10-14 2020-10-14 Binding function execution method, device, equipment and storage medium Active CN112199130B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011095502.9A CN112199130B (en) 2020-10-14 2020-10-14 Binding function execution method, device, equipment and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011095502.9A CN112199130B (en) 2020-10-14 2020-10-14 Binding function execution method, device, equipment and storage medium

Publications (2)

Publication Number Publication Date
CN112199130A true CN112199130A (en) 2021-01-08
CN112199130B CN112199130B (en) 2022-07-01

Family

ID=74009655

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011095502.9A Active CN112199130B (en) 2020-10-14 2020-10-14 Binding function execution method, device, equipment and storage medium

Country Status (1)

Country Link
CN (1) CN112199130B (en)

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102981821A (en) * 2012-10-26 2013-03-20 北京百度网讯科技有限公司 Method and system for event broker
CN105094806A (en) * 2015-06-23 2015-11-25 努比亚技术有限公司 Focal point obtaining method and focus obtaining device
US9285977B1 (en) * 2014-10-09 2016-03-15 Wrap Media, LLC Card based package for distributing electronic media and services
US20180052809A1 (en) * 2016-08-16 2018-02-22 Microsoft Technology Licensing, Llc Inferring user interaction with an iframe
CN108008929A (en) * 2017-12-19 2018-05-08 重庆满惠网络科技有限公司 A kind of method for building up and system of split screen PC web browsers
CN110049374A (en) * 2019-03-12 2019-07-23 青岛海信宽带多媒体技术有限公司 A kind of focus frame determines method and device
CN110516187A (en) * 2019-08-16 2019-11-29 北京皮尔布莱尼软件有限公司 A kind of page processing method, mobile terminal, readable storage medium storing program for executing
CN111381809A (en) * 2018-12-28 2020-07-07 深圳市茁壮网络股份有限公司 Method and device for searching focus page

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102981821A (en) * 2012-10-26 2013-03-20 北京百度网讯科技有限公司 Method and system for event broker
US9285977B1 (en) * 2014-10-09 2016-03-15 Wrap Media, LLC Card based package for distributing electronic media and services
CN105094806A (en) * 2015-06-23 2015-11-25 努比亚技术有限公司 Focal point obtaining method and focus obtaining device
US20180052809A1 (en) * 2016-08-16 2018-02-22 Microsoft Technology Licensing, Llc Inferring user interaction with an iframe
CN108008929A (en) * 2017-12-19 2018-05-08 重庆满惠网络科技有限公司 A kind of method for building up and system of split screen PC web browsers
CN111381809A (en) * 2018-12-28 2020-07-07 深圳市茁壮网络股份有限公司 Method and device for searching focus page
CN110049374A (en) * 2019-03-12 2019-07-23 青岛海信宽带多媒体技术有限公司 A kind of focus frame determines method and device
CN110516187A (en) * 2019-08-16 2019-11-29 北京皮尔布莱尼软件有限公司 A kind of page processing method, mobile terminal, readable storage medium storing program for executing

Also Published As

Publication number Publication date
CN112199130B (en) 2022-07-01

Similar Documents

Publication Publication Date Title
CN108345642B (en) Method, storage medium and server for crawling website data by proxy IP
CN110908879B (en) Reporting method, reporting device, reporting terminal and recording medium of buried point data
US11429625B2 (en) Query engine for remote endpoint information retrieval
US20170323025A1 (en) Browser acceleration method and browser device having accelerator
US9246932B2 (en) Selective website vulnerability and infection testing
CN103348346B (en) For detecting the method and system of new browser window
JP2019520624A (en) Page component dynamic layout
US11405363B2 (en) File upload control for client-side applications in proxy solutions
JP2012507778A (en) Browser-based fraud prevention method and system
EP2417551B1 (en) Providing information to a security application
WO2022111047A1 (en) Voice broadcasting method, computing device and computer storage medium
CN109600385B (en) Access control method and device
CN108733559B (en) Page event triggering method, terminal equipment and medium
WO2019140739A1 (en) Method for determining return visits to client, and electronic apparatus and computer-readable storage medium
CN103491101A (en) Phishing website detecting method and device and client-side
CN107800611A (en) The method and page layout switch device of a kind of page layout switch
CN108156127B (en) Network attack mode judging device, judging method and computer readable storage medium thereof
CN105740384A (en) Crawler agent automatic switching method and device
CN112199130B (en) Binding function execution method, device, equipment and storage medium
JP5753302B1 (en) Program, method and system for warning access to web page
CN108664493B (en) Method and device for counting validity of URL (Uniform resource locator), electronic equipment and storage medium
US9292604B2 (en) Crawling rich Internet applications
CN110244986A (en) Browser configuration method and device
CN110941484B (en) Application program calling method and device
CN111090515B (en) Access control method, device, terminal equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
PE01 Entry into force of the registration of the contract for pledge of patent right

Denomination of invention: Binding function execution methods, devices, devices, and storage media

Effective date of registration: 20230706

Granted publication date: 20220701

Pledgee: Bank of China Limited Shanghai Songjiang sub branch

Pledgor: Shanghai Miaoyi Biotechnology Co.,Ltd.

Registration number: Y2023310000352

PE01 Entry into force of the registration of the contract for pledge of patent right