我正在使用CakePHP 2.3.6。我需要将其转换为CakePHP code
:
<script>
$(document).ready(function(){
$(".clickableRow").click(function(){
window.document.location=$(this).attr("data-href");
});
});
</script>
实际上,我已经转换了大部分代码,我只是在寻找attr()
函数的替代方法。
到目前为止我所做的是:
<?php $this->Js->get('.selector')->event('click',$this->Js->redirect(---------));?>
那么,你们有什么想法吗?请帮帮我。
由于
答案 0 :(得分:0)
只需将您的javascript / jQuery代码作为event()的第二个参数:
<?php
$this->Js->get('.selector')->event('click','window.document.location=$(this).attr("data-href");');
?>