我有一个Javascript的问题,因为我试图获取一个变量,我用js设置一个onClick()并用php设置其他所有内容。使用js我有下面给出的函数,但它赢了' t将id传递给js.Any可能的方法吗?
- 更简单的问题:当我提醒身份证明它未说明时,有没有其他方法可以做到这一点?
我知道可能会有更多的文章与我的文章有类似的问题,可能已经回答过了。已经解决但我很确定他们不会解决这个问题,因为我已经搜索了很多。
任何问题都将尽快回答!
$dalert ="'salert'";
$result = '<div class="alert alert-success" style="width:600px; cursor: default;" id="salert"><strong>Login successful! </strong>Welcome <strong>'.$_SESSION['username'].'</strong>! <span class="glyphicon glyphicon-remove" style="cursor: pointer;" onClick="clAlert('.@$dalert.');" aria-hidden="true"></span></div>';
// JavaScript的
<script type="text/javascript" >
//Alert remove animation
function clAlert(id){
asd=0;
alert(id);
$('#'+id).fadeTo(50,100).slideUp(500, function(){
$('#'+id).slideUp(500);
});
}
</script>
答案 0 :(得分:0)
Just changed from $dalert="salert" to $dalert="'salert'"