问题描述
<a href="#?cat=MT&typ=1" data-reveal-id="reveal_popup" onclick="pop();" data-closeonbackgroundclick="false" data-dismissmodalclass="close-reveal-modal">due today</a>
<a href="#?cat=MT&typ=2" data-reveal-id="reveal_popup" onclick="pop();" data-closeonbackgroundclick="false" data-dismissmodalclass="close-reveal-modal">due in 2 days</a>
<div id="reveal_popup" class="reveal-modal">
<div id="popup"></div>
<a class="close-reveal-modal">×</a>
</div>
function pop() {
var cat=**value of cat parameter in href**
var type=**value of typ parameter in href**
$.ajax({
type:'post',
url:site_url()+'/event/deleteEventSingle',
data:{'cat':cat,'type':typ},
async:false,
success:function(result){}
});
}
在这种情况下,当用户单击href时,将显示具有不同数据的相同弹出窗口.实际上有超过10个hrefs,我正在尝试在弹出窗口中显示带有用户输入数据的日历.这取决于两个参数 cat和typ ,如href中所示.
In this when the user clicks a href same popup appears with different data. there are more than 10 hrefs actually and i am trying to show a calender with user inputted data in the popup. This depends on two parameters cat and typ as shown in href.
每个href都有自己的cat和typ值.单击href时,我希望使用jquery获得单击的href的cat和typ值,以便我可以在ajax中传递这些变量.
Every href has its own cat and typ values. When a href is clicked I want the cat and typ values of the clicked href to be get using jquery so that i can pass these variables in ajax.
var cat=**value of cat parameter in href**
var type=**value of typ parameter in href**
尝试
推荐答案
您可以按照以下步骤做事
You can do as soeme thing as below
$('a').bind('click',function(){
var url = ($(this).attr('href'));
var cat = getURLParameter(url, 'cat');
var typ = getURLParameter(url, 'typ');
//calling the ajax function
pop(cat, typ)
});
function getURLParameter(url, name) {
return (RegExp(name + '=' + '(.+?)(&|$)').exec(url)||[,null])[1];
}
function pop(cat, typ) {
$.ajax({
type:'post',
url:site_url()+'/event/deleteEventSingle',
data:{'cat':cat,'type':typ},
async:false,
success:function(result){}
});
}
在Live fiddle上查看示例 http://jsfiddle.net/mayooresan/aY9vy/
Check out the the example at Live fiddle http://jsfiddle.net/mayooresan/aY9vy/
这篇关于从jquery中的href获取参数值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!