将事件附加到jqMobi / jqUi标头中的元素

时间:2013-02-06 18:33:25

标签: javascript jqmobi jqui

如果我为一个自定义页眉或页脚的按钮连接点击事件,则该事件永远不会触发。我必须直接在html中注册onclick事件。

<footer id='currentchatfooter'>
    <div id="footerdiv">
        <input type='button' id="cannedRespBtn" class='icon stack footerbutton' value='responses' />

        <input type="text" id="segment" class="jq-ui-forms seginput" />

        <a class='icon check'  id="sendBtn" onclick='document.smTouch.SendSegment($("#segment").val())'>send</a>
    </div>
</footer>

注意,sendBtn锚点。我曾经通过宣布:

来解雇这个事件

$("sendBtn").on('click', function(){instance.SendSegment($("#segment").val());});

似乎页眉,页脚或模态中的任何元素都没有被附加或删除。我知道我错过了什么

0 个答案:

没有答案