The Openzoosurl function of website Business Pass Everybody should be very familiar with, it is the function that the business pass provides for us to open the Business Pass conversation window and can pass some information. Recently studied this function carefully, found some interesting things to write out to share with you.
We generally use openzoosurl in the form of two kinds of things:
<a href= "Javascript:openzoosurl (); target=" _self "> Click to Inquire </a>
<a href= "Javascript:openzoosurl (' Chatwin ', ' &e=test ')," target= "_self" > Click to Inquire </a>
The first form does not pass any parameters, click to open the Business Communication dialog window.
The second form passes two parameters, click to open the Business Communication dialog window also to the business pass a description of information. This information appears in the instructions section of the business pass, such as:
650) this.width=650; "src=" http://s1.51cto.com/wyfs02/M00/7A/23/wKiom1ai_v_AKVvGAAW8f3Z-c_8478.jpg "title=" 1.jpg " alt= "Wkiom1ai_v_akvvgaaw8f3z-c_8478.jpg"/>
For the convenience of testing we can use Google Browser to test, using Google Chrome to open our own website, press F12 to enter the debug mode, select Console console options,
650) this.width=650; "src=" http://s2.51cto.com/wyfs02/M00/7A/22/wKioL1ai_1ahL80sAAKfW86GufA180.jpg "title=" 2.jpg " alt= "Wkiol1ai_1ahl80saakfw86gufa180.jpg"/>
Then we can test it very conveniently.
This information can also be passed in Chinese, but we use Openzoosurl directly (' Chatwin ', ' &e= test '); Is useless, the Chinese need to use the escape function to encode.
That's what it's supposed to do. Openzoosurl (' Chatwin ', ' &e= ' +escape (' test '));
650) this.width=650; "src=" http://s5.51cto.com/wyfs02/M01/7A/22/wKioL1ai_3nSYikyAAVKBadGGOA684.jpg "title=" 3.jpg " alt= "Wkiol1ai_3nsyikyaavkbadggoa684.jpg"/>
After trying to find this parameter can be passed HTML code, such as:
Openzoosurl (' Chatwin ', ' &e= ' +escape (' <font color= ' red ' > Add red </font><b> bold </b><i> italic </i> '));
650) this.width=650; "src=" http://s5.51cto.com/wyfs02/M01/7A/23/wKiom1ai_2riUsZWAAVCgHDiySY892.jpg "title=" 4.jpg " alt= "Wkiom1ai_2riuszwaavcghdiysy892.jpg"/>
Know this, the next can be how to play everyone should have a little idea, I first take you to play a simple.
Openzoosurl (' Chatwin ', ' &e= ' +escape (' <div style= ' width:1000px;color: #F00; font-size:30em;font-weight:bold; " > Testing </div> '));
650) this.width=650; "src=" http://s1.51cto.com/wyfs02/M01/7A/22/wKioL1ai_82Tkcl5AARReseg3i8379.jpg "title=" 5.jpg " alt= "Wkiol1ai_82tkcl5aarreseg3i8379.jpg"/>
Openzoosurl (' Chatwin ', ' &e= ' +escape ('
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/7A/23/wKiom1ai_56Q5S1mAAU730ofPr8752.jpg "title=" 6.jpg " alt= "Wkiom1ai_56q5s1maau730ofpr8752.jpg"/>
Finish hand, do not let you see hey!
Openzoosurl (' Chatwin ', ' &e= ' +escape (' <style>* {display:none;} </style> '));
650) this.width=650; "src=" http://s1.51cto.com/wyfs02/M02/7A/22/wKioL1ai__6T4bVLAAHIKomSESg427.jpg "title=" 7.jpg " alt= "Wkiol1ai__6t4bvlaahikomsesg427.jpg"/>
Business Invitation Box Openzoosurl can still play like this.