丁香实验_LOGO
登录
提问
我要登录
|免费注册
点赞
收藏
wx-share
分享

【共享】引物溶解计算-html版

丁香园论坛

1016
每次拿到生工的合成报告单,就要计算引物的溶解体积。
所以写了个网页,可以做一个简单的计算,希望能用得上:

其中分子量和OD值按合成报告单来;引物浓度按自己的需要来;其他两项自动计算出结果。

代码:
<html>
<body>
<script>
function Calc(){
if(Primer.InputMW.value!=0){
Primer.OutputMol.value=Primer.OD.valuundefined33/Primer.InputMW.value;
    Primer.Volu.value=Primer.OutputMol.value/Primer.Conc.valuundefined1000000;
    }
}
</script>

<form name=Primer action=>
<br>
<table width="52%" border="0" align="center" cellspacing="1" bgcolor="#FF9900" class="submit">
<tr bgcolor="#FFFFFF">
<td width="51%" height="25">
<div align="right">OD值: </div></td>
<td width="49%">
<input type=text name=OD onKeyUp="javascript:Calc()" value=2></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="29">
<div align="right">分子量(Dalton):</div></td>
<td>
<input name=InputMW type=text onKeyUp="javascript:Calc()" value=6000></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28">
<div align="right">摩尔数(um):</div></td>
<td>
<input type=text name=OutputMol></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="28">
<div align="right">浓度(uM):</div></td>
<td>
<input type=text name=Conc onKeyUp="javascript:Calc()" value="10"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="33">
<div align="right">溶解体积(uL):</div></td>
<td>
<input type=text name=Volu></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="60" colspan="2">
<div align="center">
<input name="button" type=button onClick="javascript:Calc();" value="计算">
</div></td>
</tr>
</table>
<br>
</form>
</body>
</html>
提问
扫一扫
丁香实验小程序二维码
实验小助手
丁香实验公众号二维码
扫码领资料
反馈
TOP
打开小程序