$('#add').click(function(){
$.jeegoopopup.open({
url: 'update.php?cids= <?php echo $dt['callerid'] ?> && eid= <?php echo $dt['eid'] ?> && sts= <?php echo $dt['status'] ?>',
width: 500,
height: 200,
center: true,
skinClass: 'jg_popup_round',
resizable: false,
scrolling: 'no',
如果我在url中提供参数值,则按钮无法执行操作
谁能帮我
最佳答案
更新&& is WRONG in Query string , its only & . The && operator comes ONLY in logical operations like a==2 && b==2
使用适当的引号,例如JS Ajax代码中的以下语句来连接PHP变量。
关于javascript - 如何在jQuery URL中提供参数值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28584111/