4

我想在输入文本中使用 java 脚本打开或显示弹出页面:

<input class="addpopup" type="text" name="address" id="address"></input>
<script>
    $(".addpopup").click(function () {
        $(this).page('#popupAddfix');
    });
</script>

和弹出代码:

<div data-role="popup" id="popupAddfix">
  <form>
    <h3>Your Address</h3>
    <label >Address</label>
    <input type="text" name="addfix" id="fix" value=""/>

    <button type="submit" >Save</button>
  </form>
</div>

但它没有打开弹出窗口。我该如何做到这一点?

4

1 回答 1

5

要以编程方式打开弹出窗口,您需要使用.popup('open'). 使用任何事件,例如focus, click, tap...等

演示

$(document).on('focus', '.addpopup', function() {
 $('#popupAddfix').popup('open');
});
于 2013-06-16T06:52:00.527 回答