我有这个网址:../foo::bar{2}233{13}171{1}1{20}0.html
参数位于{}
,后面是值。
有了这个,我就能得到这些值:
var vars = [], hash;
var q = document.URL.split('bar')[1];
if(q != undefined){
q = q.split('%7B');
for(var i = 0; i < q.length; i++){
hash = q[i].split('%7D');
vars.push(hash[1]);
vars[hash[0]] = hash[1];
}
};
如何设置匹配的单选按钮selected
以提交表单?
<input id="233" type="radio" value="233" name="id[2]">
<label title="orange" for="233">
<img style="background: #FF6600; color: #668014" src="img/orange.gif">
</label>
此外,我还想使用以下style
的{{1}}作为其他div的样式值。对于页面上的选择,我有:
img
$('label img').click(
function() {
var bg = $(this).css('background-color');
var bc = $(this).css('color');
$('.basic').css("background-color", bg);
$('.detail').css("border-color", bc);
});
还不够......