1

我想突出显示其 id 是从 mysql 数据库中检索到的映射图像的那一部分。我已将 id 存储在 $loc 变量中。现在使用 jquery 选择器,我想在我的 jquery 选择器中传递这个 php 变量,以便它突出显示与 $loc 中具有相同 id 的图像部分。这是我的工作代码:

    <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript" src="jquery.maphilight.js"></script>
<script type="text/javascript">
 $(function () {
        $(".mapping").maphilight();


    $(".hoverable").css("border", "3px solid red");


    var data = $('#cr2').data('maphilight') || {};  
    data.alwaysOn = !data.alwaysOn;
    $('#cr1').data('maphilight', data).trigger('alwaysOn.maphilight'); // portion to always highlight (I WANT TO PASS THE PHP VARIABLE $LOC INSTEAD OF '#CR1'

});<area shape="poly" id="cr1" class="room" coords="549,272,489,334,534,377,594,316" href="www.msn.com" target="_top" alt="CR1" name="room-1">

4

2 回答 2

5

#cr1替换为#<?php echo $loc ?>

代替:

$('#cr1').data('maphilight', data).trigger('alwaysOn.maphilight');

利用:

$('#<?php echo $loc ?>').data('maphilight', data).trigger('alwaysOn.maphilight');
于 2012-12-17T13:11:32.550 回答
-1

您可以使用json_encode函数并将 php 变量$loc作为参数传递

例如

var data = <?php echo json_encode($loc); ?>;

jQuery.each(data, function(i,event) {
   // alert(event.toSource());
   var id = event.id;  // here id is the array of the value based on the php variable for $loc
   badge_name = event.name; // here name is the array of the value based on the php variable for $loc
});
于 2012-12-17T13:11:03.790 回答