heodat234 / tinhvanchuyen
jQuery插件发货
v1.0
2018-08-18 05:16 UTC
This package is not auto-updated.
Last update: 2024-09-23 12:54:23 UTC
README
jQuery插件费用发货
安装
- 通过composer安装:composer require heodat234/tinhvanchuyen
- 添加链接到phiship的javascript和css文件
<link rel="stylesheet" type="text/css" href="path/to/phiship.css"/>
<script src="path/to/jquery.min.js"></script>
<script type="text/javascript" src="path/to/phiship.jquery.js"></script>
用法
$(document).ready(function(){
jQuery("#popup1").popup();
// $("#popup1").popup({title:"Abc"});
// $("#popup1").popup({title:"Phí vận chuyển", width:"900px",height:"500px"});
$("button").click(function(e) {
var popupid=this.getAttribute("popup");
$("#"+popupid).openPopup();
});
});
以及HTML标记
<button popup="popup1">Open Popup1</button>
<div id="popup1"></div>