如何为JEditable / JQuery的许多项使用一个函数

时间:2012-06-25 05:25:38

标签: javascript jquery jeditable

我有一个简单的JS代码,用于编写一个简单的字段:

<html>
<head>
    <script type="text/javascript" src="jquery-1.7.2.min.js"></script>
    <script type="text/javascript" src="jquery.jeditable.js"></script>
</head>
<body>
    <table border='1'>
    <div id="load-button" style="border:1px solid black; background-color:white;padding:5px;cursor:pointer;width:200px;text-align:center;border-radius:4px;">Load button</div>
    <b class="mouseover1" style="display: inline">mouseover me1</b>
    <b class="mouseover2" style="display: inline">mouseover me2</b>
    <script type="text/javascript" charset="utf-8">
        $(function() {
          $(".mouseover1").editable("echo.php", { 
              event     : "mouseover",
              style  : "inherit"
          });  
        });
    </script>
</body>
</html>

我对JS的了解非常少,我需要知道如何为mouseover1字段和mouseover2设置函数。谢谢。

1 个答案:

答案 0 :(得分:1)

使用选择器:

$(".mouseover1,.mouseover2")

或更好地使它们成为同一类