Js开发中遇到过的问题

在此文章记录,前端开发遇到过的问题,

 

1、解决IE下 a标签 点击无反应问题

     var a = $("<a onclick='myMsg()'/>") //有用
    $("a").attr("onclick","alert(1); return (false);")//测试,没有,

 

2、rowsan--取消行合并时,IE报错

IE默认rowsan都为1,所在不用直接removeAttr掉rowsan,直接修改值为1即可;

Js开发中遇到过的问题_第1张图片

<table>
	<tr><td>1</td><td>2</td><td>3</td><td class="d">4</td></tr>
	<tr><td>5</td><td>6</td><td>7</td><td>8</td></tr>
	<tr><td>1</td><td>2</td><td>3</td><td>5</td></tr>
</table>

<button onclick="cell()">合并</button>
<button onclick="dell()">取消</button> 

<script charset="UTF-8" type="text/javascript">
	function cell(){
		$("tr > td:last-child").hide();
		$(".d").show().attr("rowspan",3);
	}
	function dell(){
		$("tr > td").hide().attr("rowspan",1).show();
	}
</script>


 

3、通过jquery的serialize() 获取的中文值,回显时,使用decodeURIComponent进行解码

   var value = decodeURIComponent(jquery.serialize()); 

 

4、ajax中文乱码解决,相关函数

escape  -  unescape

encodeURI  -  decodeURI

encodeURIComponent  -  decodeURIComponent

你可能感兴趣的:(Js开发中遇到过的问题)