作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在URL中传递studentID?由于其 js 变量出现错误或作为字符串传递。
<script>
function updateCallhistory(studentID)
{
<?php
echo CHtml::ajax(array(
'url'=> Yii::app()->createUrl("siteiq/UpdateStudentForm", array("ClassID" => $ClassID) ),
'data'=> "js:$(this).serialize()",
'type'=>'post',
'dataType'=>'json',
'success'=>"function(data)
{
if (data.status == 'failure')
{
$('#dialogStudentForm div.divForForm').html(data.div);
// Here is the trick: on submit-> once again this function!
$('#dialogStudentForm div.divForForm form').submit(updateCallhistory);
}
else
{
$('#dialogStudentForm div.divForForm').html(data.div);
setTimeout(\"$('#dialogStudentForm').dialog('close') \",1000);
}
} ",
))?>;
return false;
}
</script>
最佳答案
试试这个方法:
<script>
function updateCallhistory(studentID)
{
var url = '<?php echo Yii::app()->createUrl("siteiq/UpdateStudentForm", array("ClassID" => $ClassID) ); ?>' + '&studentID='+studentID;
<?php
echo CHtml::ajax(array(
'url'=> 'js:url',
'data'=> "js:$(this).serialize()",
'type'=>'post',
'dataType'=>'json',
'success'=>"function(data)
{
if (data.status == 'failure')
{
$('#dialogStudentForm div.divForForm').html(data.div);
// Here is the trick: on submit-> once again this function!
$('#dialogStudentForm div.divForForm form').submit(updateCallhistory);
}
else
{
$('#dialogStudentForm div.divForForm').html(data.div);
setTimeout(\"$('#dialogStudentForm').dialog('close') \",1000);
}
} ",
))?>;
return false;
}
</script>
关于php - 如何在ajax链接函数中传递js变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14018299/
我是一名优秀的程序员,十分优秀!