1.0.1 • Published 6 years ago

yinbiao-input v1.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

yinbiao-input

####音标输入演示

<div class="text">
    <input type="text" id="yingbiaoInput">
    <button id="output">打印内容</button>
</div>

<script>
    $("#yingbiaoInput").ybInput();
    $('#output').click(function (e) {
        e.stopPropagation();
        alert($("#yingbiaoInput").val())
    })
</script>