<script type="text/javascript">
$(document).ready(function() {
$("#fun").focusout(function() {
// alert("Value: " + $("#fun").val());
$.post("<?php echo base_url() ?>index.php/login/email_exists", {
email: $("#fun").val(),
}, function(data, status) {
if (data == 0) {
document.getElementById("error").innerHTML = "Email already exists, Please select another email";
document.getElementById("ddfun").focus();
// alert("email already exists " + data);
} else {
document.getElementById("error").innerHTML = "";
}
//alert("Data: " + data);
});
});
});
</script>
我在我的應用程序中使用了更多的jQuery和Ajax。我總是在view.php文件中寫入Ajax(帶有php代碼)。如果有任何選項可以在外部js文件中添加Ajax。任何幫助,將不勝感激。如何把ajax代碼放在php codeigniter的external.js文件中
<腳本類型= 「文/ JavaScript的」> $(函數(){$ 阿賈克斯({ 網址:'<?php echo base_url()?> task/get_sent_sms', type:'POST', data:{ client_id:<?php echo $ client-> client_id?>, project_id:<?php echo $ C lient-> project_id?> }, success:function(response){$('#sms_message')。val(''); //清空值字段 // alert(response); $('#sent_sms')。html(response); } }); }); 這個怎麼樣 – Rakesh
這在外部js文件中不起作用。 –
任何其他解決方案 – Rakesh