鍍金池/ 問答/PHP  網(wǎng)絡(luò)安全/ tp3.2 模板的eq標(biāo)簽中 ,<eq name="{:C('

tp3.2 模板的eq標(biāo)簽中 ,<eq name="{:C('login_verify')}" value="1">?

<eq name="{:C('login_verify')}" value="1"> 這樣出錯

回答
編輯回答
巴扎嘿

你想要出驗證碼嗎?
<input type="text" class="input-text radius mt-10" style="width: 70px;text-align: center;" placeholder="驗證碼" required="" name="yanzhengma" id="yanzhengma">

     <img id="img" onclick="getimg(this)" style="width:150px;height: 40px;" src="{:U('Login/verify')}" alt="verify_code">
      <br>
      ————————————————————————————————————————————————————————————————————————————————
      
      <script>
function getimg(data){

//"+id="+Math.random()

  data.src="{:U('Login/verify')}"+'?'+"id="+Math.random();
    //console.log(Math.random());
  console.log("{:U('Login/verify')}"+'?'+"id="+Math.random());

}

</script>

2018年5月13日 23:01