栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

JavaScript将数据传递到引导模式

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

JavaScript将数据传递到引导模式

我认为你可以使用jQuery的.on事件处理程序来完成这项工作。

这是你可以测试的小提琴;只需确保在小提琴中尽可能扩展HTML框架,以便你可以查看模式。

HTML

<p>link 1</p><a data-toggle="modal" data-id="ISBN564541" title="Add this item"  href="#addBookDialog">test</a><p>&nbsp;</p><p>link 2</p><a data-toggle="modal" data-id="ISBN-001122" title="Add this item"  href="#addBookDialog">test</a><div  id="addBookDialog"> <div >    <button  data-dismiss="modal">×</button>    <h3>Modal header</h3>  </div>    <div >        <p>some content</p>        <input type="text" name="bookId" id="bookId" value=""/>    </div></div>

JAVAscript

$(document).on("click", ".open-AddBookDialog", function () {     var myBookId = $(this).data('id');     $(".modal-body #bookId").val( myBookId );     // As pointed out in comments,      // it is unnecessary to have to manually call the modal.     // $('#addBookDialog').modal('show');});


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/374141.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号