我正在学习j查询,我想在当前URL中发送id然后在点击事件上发送UL Li以在当前URL中发送id而不刷新页面
喜欢这样:
Current URL = localhost/backupapp-latest-21-05/index.php?r=site/Application<br>
send id url = localhost/backupapp-latest-21-05/index.php?r=site/Application&abcid=48
abcid = 48 是我的UL Li id
试试这段代码:
$(document).ready(function(e) {
$('#hari-ul > li').each(function(index, element) {
$(element).click(function(e) {
var id = (this.id);
window.location.href = "index.php?r=site/Application&abcid="+id;
}
});
});
});
此代码在URL中发送id但页面刷新,我想要没有页面刷新的id
答案 0 :(得分:1)
尝试这种方式:
$.ajax({
url: url,
data: data,
success: success,
dataType: dataType
});
查看以下示例:
或者尝试这种方式:
$.get('path/to/yourfile.html', function(data) {
//do something
});