模态未定义错误 [英] modal is not defined error

查看:76
本文介绍了模态未定义错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

jQuery Cide:

jQuery Cide:

function modal(this) {
        alert($(this).data("id"));
    }

HTML代码:

<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-id="<?php echo $state['ID']?>" onclick='modal(this)'>Open Modal</button>

Bootstrap Modal

Bootstrap Modal

<!-- Modal -->
<div id="myModal" class="modal fade" role="dialog">
  <div class="modal-dialog">

    <!-- Modal content-->
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">&times;</button>
        <h4 class="modal-title">Modal Header</h4>
      </div>
      <div class="modal-body">
        <p>Some text in the modal.</p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div>

  </div>
</div>

错误:

Uncaught ReferenceError: modal is not defined at HTMLButtonElement.onclick

我已经在文档准备功能之外定义了模态,但是它向我显示模态未定义错误.如何解决此错误?

I already defined modal outside of document ready function but it displaying me modal is not defined error How to resolve this error?

推荐答案

正在运行的代码段.

function modal(ref) {
	alert($(ref).data("id"));
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-id="1" onclick='modal(this)'>Open Modal</button>

这篇关于模态未定义错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆