1. 程式人生 > >jquery qtip提示外掛 箭頭上下顯示方法

jquery qtip提示外掛 箭頭上下顯示方法

第一種

預設的

 1 $("#technicalStaff_desc_tooltop").qtip({
 2             content: {
 3                 title: " ",
 4                 text: "技術人員型別包括但不限於軟體工程師、系統架構師、資料設計師、測試工程師、網路工程師,市場資料分析、營銷策劃、公關策劃、廣告媒體制作,建造師、造價師、質檢員、機械工程技術員,供應鏈企劃師、物流策劃師、物流資訊科技員、ERP實施員等。" +
 5                     "<br/>" +
 6
"Technical Staff types include but are not limited to software engineers, system architects, database designers, test engineers, network engineers, marketing data analysts, marketing planners, public relation planners, advertising media producers, constructors, cost engineers, quality inspectors, mechanical engineering technicians, supply chain planners, logistics planners, logistics information technicians, ERP engineers, etc" 7
8 }, 9 style: { 10 classes: 'qtip-blue' 11 } 12 });

 

第二種

 1  $("#emailaddress_tooltop").qtip({
 2             content: {
 3                 title: "&nbsp;",
 4                 text: "該郵箱為供應商門戶註冊通知指定接收人。" +
 5                     "<br/>" +
 6
"The email address will be used to receive reminder emails from SGM Supplier Portal." 7 }, 8 style: { 9 classes: 'qtip-red' 10 }, 11 position: { 12 at: 'top left', 13 my: "bottom left" 14 } 15 });