php 文本域
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 文本域相关的知识,希望对你有一定的参考价值。
这样要怎么写呢?有人帮我吗?我的QQ13212287
就是上面的价格,以进价为准,然后下面提交的时候按这个比例自动加上上面的价格
比如进价是2元,按进价递增,0.3元,那2的价格是2.3 1的价格就是2.6
如果进价是1.5元,按进价递增,0.2元,那2的价格是1.7 1的价格就是1.9
这样说能明白我的意思不
JS调用CSS样式表问题(功能鼠标经过文本域是文本域边框颜色发生变化『给出能够实现功能的源码』)
JS调用CSS样式表问题(功能鼠标经过文本域是文本域边框颜色发生变化『给出能够实现功能的源码』)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题文档</title>
<script type="text/javascript">
function dod()
document.getElementById("testId").className="testClass"
</script>
<style type="text/css">
.testClass border:5px solid #000;
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
</head>
<body>
<div >
<input name="" type="text" onmouseover="dod"/>
</div>
<div id="testId">
abc
</div>
</body>
</html>
input:hover border: 5px solid #000;
用Javascript:
<input name="" type="text" onmouseover="this.style.border = '5px solid #000';" onmouseout="this.removeAttribute('style');" />追问
这样还要定义javascript呀! 没看见有捱。
追答
把这一行改为
<style type="text/css">
.text1
background:#fff;
border:solid 1px #ccc;
.tover
background:#fff;
border:solid 1px #f00;
</style>
楼上的这么改下就行了。要注意CSS的优先权 参考技术C <input type="text" size="10" id="text1" onmouseover="javascript:textover('tover');" />
<style type="text/css">
#text1
background:#fff;
border:solid 1px #ccc;
.tover
background:#fff;
border:solid 1px #f00;
</style>
<script language="javascript">
function textover(cname)
var m
m=document.getElementById("text1")
m.classname=cname
</script>追问
你用这个实现了“鼠标经过文本域是文本域边框颜色发生变化”?
追答这个没问题,测试过了
.tover
border:#FF0000 solid 1px;
display:block;
function fun(test)
var object= document.getElementById(test);
object.setAttribute("className","tover");
a:hover可以实现,不过在IE8.0下出现了兼容性问题,郁闷呀!
追答为什么一定要用a:hover呢,你不会变个方法来实现,程序是死的认识活的,活人还能让尿憋死啊!!要学会变通@
追问那你能够解决这个问题不? 能解决请写出源码
追答首先引入jquery文件。。。
$(function()
$("#mouse").mouseover(function()$(this).addClass("sss"));
$("#mouse").mouseout(function()$(this).removeClass("sss"));
);
以上是关于php 文本域的主要内容,如果未能解决你的问题,请参考以下文章
在winform中怎么样设置文本域根据文本域中显示的内容自动改变大小