1

我有一个 id="remove" 的按钮

我需要一个简单的提示:

<script>  $(document).ready(function(){$("#remove").simpletip();});
</script>

我已经包括:

<script type="text/javascript" src="http://cdn.jsdelivr.net/jquery.simpletip/1.3.1/jquery.simpletip-1.3.1.min.js.txt"></script>

我需要包含任何其他 CDN 吗?为什么这不起作用?

4

2 回答 2

0
  1. 加载jquery

  2. https://cdn.jsdelivr.net/jquery.simpletip/1.3.1/jquery.simpletip-1.3.1.min.js

这是一个简单的DEMO

于 2015-06-09T05:41:46.393 回答
0

您还必须包含一个 jquery CDN。这是您的按钮在小提琴中工作

Jquery CDN 从这里:http: //jquery.com/download/

  <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
于 2015-06-09T05:43:57.593 回答